[TIMOB-4084] Tab window's title goes away after first focus of containing window
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | High |
Status | Closed |
Resolution | Duplicate |
Resolution Date | 2011-05-13T17:18:07.000+0000 |
Affected Version/s | Release 1.7.0 |
Fix Version/s | n/a |
Components | iOS |
Labels | ios, tab, title, window |
Reporter | Jacob Relkin |
Assignee | Jacob Relkin |
Created | 2011-05-13T16:17:15.000+0000 |
Updated | 2011-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*.
Duplicate of 4085.