[TIMOB-5387] Tabgroups don't work with fastdev
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Low |
| Status | Closed |
| Resolution | Won't Fix |
| Resolution Date | 2013-10-17T21:10:24.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | n/a |
| Labels | fastdev |
| Reporter | Allen Yeung |
| Assignee | Allen Yeung |
| Created | 2011-09-28T18:51:49.000+0000 |
| Updated | 2017-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
| File | Date | Size |
|---|---|---|
| traces.txt | 2011-09-28T18:51:49.000+0000 | 65248 |
We are deprecating FastDev in version 3.2.0, so marking this as "Won't Fix"
Closing ticket as the issue will not fix.