Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-5557] MobileWeb: Browser can not correctly render tabGroup if it has more than 6 tabs.

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionFixed
Resolution Date2011-09-05T05:23:31.000+0000
Affected Version/sn/a
Fix Version/sRelease 1.7.2
ComponentsMobileWeb
Labelsn/a
ReporterMisha Vasko
AssigneeAndrew Kulinich
Created2011-09-02T03:42:50.000+0000
Updated2017-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

FileDateSize
Correct.png2011-09-02T03:42:50.000+00001934
Wrong.png2011-09-02T03:42:50.000+00002574

Comments

  1. Lee Morris 2017-03-03

    Closing ticket.

JSON Source