Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-4084] Tab window's title goes away after first focus of containing window

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionDuplicate
Resolution Date2011-05-13T17:18:07.000+0000
Affected Version/sRelease 1.7.0
Fix Version/sn/a
ComponentsiOS
Labelsios, tab, title, window
ReporterJacob Relkin
AssigneeJacob Relkin
Created2011-05-13T16:17:15.000+0000
Updated2011-05-13T17:18:07.000+0000

Description

Using the following code:
	var leaderboardWindow = Titanium.UI.createWindow($$.Window);
	
	pointsData = _data;
	tableData = [];
	tableRows = [];
	
	// display objects
	tableView = Titanium.UI.createTableView({
		data:tableRows,
		backgroundColor:'white'
	});
	
	leaderboardWindow.add(tableView);
	
	// when this window is shown, get some data
	leaderboardWindow.addEventListener('open',function(){
		alert('you opened this tab');
	});

	var tab = Titanium.UI.createTab({
		icon:'images/tab_friends.png',
		title:'Leaderboard',
		window:leaderboardWindow
	});
*After re-entering any tab, the tab's window's title is not visible anymore*.

Comments

  1. Jacob Relkin 2011-05-13

    Duplicate of 4085.

JSON Source