Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-4085] Tab title is not visible on the associated window's navigation bar.

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionCannot Reproduce
Resolution Date2011-05-16T11:21:47.000+0000
Affected Version/sRelease 1.7.0
Fix Version/sSprint 2011-20
ComponentsiOS
Labelsios, tab, title, window
ReporterJacob Relkin
AssigneeJacob Relkin
Created2011-05-13T16:17:24.000+0000
Updated2012-02-09T14:10:35.000+0000

Description

Using the following code:
var firstWindow = Ti.UI.createWindow({'title': 'First Tab'});
var secondWindow = Ti.UI.createWindow({'title': 'Second Tab'});

// when this window is shown, get some data
secondWindow.addEventListener('focus',function(){
	alert('you opened this tab');
});

var tabOne = Titanium.UI.createTab({
	title:'Tab One',
	window:firstWindow
});

var tabTwo = Ti.UI.createTab({
	title:'Tab Two',
	window:secondWindow
});

var tabGroup = Ti.UI.createTabGroup({
	tabs:[tabOne, tabTwo]
});

tabGroup.open();

Run app, and behold! The associated title is not visible on their respective window's navigation bar.

Comments

  1. Jacob Relkin 2011-05-16

    I cannot reproduce this issue with the code provided.
  2. Thomas Huelbert 2012-02-09

    I am lolling at this bug

JSON Source