[TIMOB-5557] MobileWeb: Browser can not correctly render tabGroup if it has more than 6 tabs.
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2011-09-05T05:23:31.000+0000 |
Affected Version/s | n/a |
Fix Version/s | Release 1.7.2 |
Components | MobileWeb |
Labels | n/a |
Reporter | Misha Vasko |
Assignee | Andrew Kulinich |
Created | 2011-09-02T03:42:50.000+0000 |
Updated | 2017-03-03T22:34:21.000+0000 |
Description
Browser can not correctly render tabGroup if it has more than 6 tabs. iOS render only 3 tabs correctly.
Example:
var win = Ti.UI.currentWindow;
var tabGroup1 = Ti.UI.createTabGroup({
});
win.add(tabGroup1);
var tabs = [];
for (var ii = 0; ii < 7; ii++){
tabs[ii] = Ti.UI.createTab({
title: 'Tab ' + ii
});
tabGroup1.addTab(tabs[ii]);
};
Attachments
File | Date | Size |
---|---|---|
Correct.png | 2011-09-02T03:42:50.000+0000 | 1934 |
Wrong.png | 2011-09-02T03:42:50.000+0000 | 2574 |
Closing ticket.