Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-12726] BlackBerry : TableViewRows are not visible

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionCannot Reproduce
Resolution Date2013-02-13T20:52:07.000+0000
Affected Version/sn/a
Fix Version/s2013 Sprint 04 BB, 2013 Sprint 04
ComponentsBlackBerry
Labelssdk-bb
ReporterLokesh Choudhary
AssigneeJosh Roesslein
Created2013-02-13T20:06:49.000+0000
Updated2014-06-19T12:42:54.000+0000

Description

This is a regression It works properly & we can see the tableviewrow in build 3.1.0.v20130212113336 Description: 1.Run the code snippet below:
var win1 = Titanium.UI.createWindow({  
    backgroundColor:'#000'
});
   
   
   var self = Ti.UI.createView({
		backgroundColor:'white'
	});
	
var tableData = [
	{title:'Apples', color: '#000'},
	{title:'Grapes', color: '#000'},
	{title:'Oranges',color: '#000'},
	{title:'Bananas',color: '#000'},
	{title:'Pears',  color: '#000'},
	{title:'Kiwis',  color: '#000'}
];
	
var table = Ti.UI.createTableView({
	data:tableData
});
self.add(table);
win1.add(self);
win1.open();
Actual Result: 1.We do not see any tableviewrows Expected Result: 1.We should see the table view rows

Comments

  1. Josh Roesslein 2013-02-13

    Unable to reproduce issue on the following: - Simulator (10.0.9.1673) - Dev Alpha B (10.9.10.35) I know in older version of BlackBerry they had changed the font color of the list items to white, but in newer versions reverted back to black. We cannot control this with the built-in list view types. The plan eventually is to use our own custom list items to gain full control. For now using black or white background colors isn't recommended since the text could end up blending into it.
  2. Lokesh Choudhary 2013-02-13

    I had tested on the same simulator & device as you have & I just see the titanium splash screen & nothing else.Using build 3.1.0.v20130212113336 & same simulator & device I can see the table view rows. If I even change the background color to any other color like red I dont even go ahead of splash screen.
  3. Lokesh Choudhary 2013-02-13

    @josh - can you provide me any code or something which you tried & it worked for you ?
  4. Josh Roesslein 2013-02-13

    I just ran the code in the description via the native IDE. I'll confirm on studio as well. Does any other test cases fail the same way (window doesn't open)? Sounds like it could be unrelated to table view.
  5. Josh Roesslein 2013-02-13

    @Lokesh You say we have the same simulator version, but in Environment you have version 10.0.9.386. If this is incorrect can you correct it so we know which versions we are all testing against.
  6. Lokesh Choudhary 2013-02-13

    Verified the issue on build 3.1.0.v20130213122031 & found it to be working as expected. Thus closing the issue. Environment: Ti Studio : 3.1.0.201302101654 Ti BB SDK : 3.1.0.v20130213122031 Mac OSX : 10.8.2 win 7 Win 8 BB simulator : 10.0.9.386 Dev alpha 10 device

JSON Source