Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-5387] Tabgroups don't work with fastdev

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionWon't Fix
Resolution Date2013-10-17T21:10:24.000+0000
Affected Version/sn/a
Fix Version/sn/a
Componentsn/a
Labelsfastdev
ReporterAllen Yeung
AssigneeAllen Yeung
Created2011-09-28T18:51:49.000+0000
Updated2017-03-13T21:09:58.000+0000

Description

Using tabgroups with fastdev causes the app to stay in the splash screen.
// this sets the background color of the master UIView (when there are no windows/tab groups on it)
Titanium.UI.setBackgroundColor('#000')
 
var tabGroup = Titanium.UI.createTabGroup();
  
var win = Titanium.UI.createWindow({
    title:'win_test'
});
  
var webView = Titanium.UI.createWebView({
    html: '<select name="selectBox"><option value="val1">Value 1</option><option value="val2">Value 2</option><option value="val3">Value 3</option></select>'
});
win.add(webView);
  
  
var tab = Titanium.UI.createTab({
    icon:'',
    title:'Test',
    window:win       
});
  
tabGroup.addTab(tab);
tabGroup.open();
This is most likely caused by a deadlock. You may need to run the app several times to reproduce. I have attached the log from the emulator when this happens.

Attachments

FileDateSize
traces.txt2011-09-28T18:51:49.000+000065248

Comments

  1. Ingo Muschenetz 2013-10-17

    We are deprecating FastDev in version 3.2.0, so marking this as "Won't Fix"
  2. Lee Morris 2017-03-13

    Closing ticket as the issue will not fix.

JSON Source