Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-14700] Blackberry: Assigning to "tabs" property of TabGroup does not work

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionWon't Fix
Resolution Date2016-08-30T18:59:42.000+0000
Affected Version/sRelease 3.1.2
Fix Version/sn/a
ComponentsTiAPI
Labelsn/a
ReporterTony Lukasavage
AssigneeEric Merriman
Created2013-07-30T21:35:05.000+0000
Updated2017-03-20T20:24:15.000+0000

Description

Problem

On all supported platforms (other than Blackberry) the following test case opens the 2-tabbed app as expected. On Blackberry you only get a black screen.

Test Case

This test case is just a slightly modified version of the 2-tabbed default app.
// this sets the background color of the master UIView (when there are no windows/tab groups on it)
Titanium.UI.setBackgroundColor('#000');


//
// create base UI tab and root window
//
var win1 = Titanium.UI.createWindow({  
    title:'Tab 1',
    backgroundColor:'#fff'
});
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);

// create tab group
var tabGroup = Titanium.UI.createTabGroup({
	tabs: [tab1, tab2]	
});

// open tab group
tabGroup.open();

Comments

  1. Andrew McElroy 2016-02-19

    since blackberry isn't a supported platform anymore, shouldn't this be closed?
  2. Chris Barber 2016-08-30

    BlackBerry is dead.
  3. Lee Morris 2017-03-20

    Closing ticket as BlackBerry is no longer supported.

JSON Source