Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: Release 3.1.0, 2013 Sprint 05 BB, 2013 Sprint 05
-
Component/s: BlackBerry
-
Environment:
Environment:
Ti Studio : 3.1.0.201302280951
Ti BB SDK : 3.1.0.v20130227145654
Mac OSX : 10.8.2
win 7
Win 8
BB simulator : 10.0.10.261
Dev alpha B 10 device
Description
This is a regression it works fine in build : 3.1.0v20130225112338
Description:
2.Create & Run default app code below on BB device /simulator
// this sets the background color of the master UIView (when there are no windows/tab groups on it)
|
Titanium.UI.setBackgroundColor('#000');
|
|
// create tab group
|
var tabGroup = Titanium.UI.createTabGroup();
|
|
|
//
|
// create base UI tab and root window
|
//
|
var win1 = Titanium.UI.createWindow({
|
title:'Tab 1',
|
backgroundColor:'blue'
|
});
|
var tab1 = Titanium.UI.createTab({
|
icon:'KS_nav_views.png',
|
title:'Tab 1',
|
window:win1
|
});
|
|
var label1 = Titanium.UI.createLabel({
|
color:'#999',
|
text:'I am Window 1',
|
font:{fontSize:20,fontFamily:'Helvetica Neue'},
|
textAlign:'center',
|
width:'auto'
|
});
|
|
win1.add(label1);
|
|
//
|
// create controls tab and root window
|
//
|
var win2 = Titanium.UI.createWindow({
|
title:'Tab 2',
|
backgroundColor:'#fff'
|
});
|
var tab2 = Titanium.UI.createTab({
|
icon:'KS_nav_ui.png',
|
title:'Tab 2',
|
window:win2
|
});
|
|
var label2 = Titanium.UI.createLabel({
|
color:'#999',
|
text:'I am Window 2',
|
font:{fontSize:20,fontFamily:'Helvetica Neue'},
|
textAlign:'center',
|
width:'auto'
|
});
|
|
win2.add(label2);
|
|
|
|
//
|
// add tabs
|
//
|
tabGroup.addTab(tab1);
|
tabGroup.addTab(tab2);
|
|
|
// open tab group
|
tabGroup.open();
|
3.Check the app after it launches
Actual Result:
1.We do not see tab window color & the labels
Expected Result:
1.We should see tab window color & labels