Application Type:mobile,Titanium sdk:3.3.0 GA,Device:ios Simulator,OS:Mac OSX 10.9.3,platform and version:ios 7.1
1)background image of window or view is not shown when the tableview is added to them.It shows white background even the background image is given tableview also.
2)Event listener for table view is not shown.after the back button of the members page is clicked it will show the member info page.
//create a window var win = Ti.UI.createWindow({ modal : true, title : 'Members', backgroundImage : 'images/bg.png', }); //ios back button if (Ti.Platform.osname == 'iphone') { var backbtn = Ti.UI.createButton({ title : "Back", top : '1%', left : '2%', style : Titanium.UI.iPhone.SystemButtonStyle.BORDERED, //color:'white', // opacity:0.5 backgroundColor : 'transparent' // backgroundColor:'black' }); backbtn.addEventListener("click", function() { win.close(); }); win.setLeftNavButton(backbtn); win.add(backbtn); } var view=Ti.UI.createView({ //width:Ti.UI.SIZE, top:'7%', height:Titanium.Platform.displayCaps.platformHeight*0.8 }); win.add(view); win.view=view; while (bodrow.isValidRow()){ var rows=Ti.UI.createTableViewRow({}); rows.textId=bodrow.fieldByName('mid'); var memLabel = Titanium.UI.createLabel({ text:bodrow.fieldByName('membername'), color:'white', font: {fontSize: 16, fontWeight: 'bold'}, left:'50%', height: 60, textid:bodrow.fieldByName('mid') }); rows.add(memLabel); var postlbl=Ti.UI.createLabel({ text:bodrow.fieldByName('post'), font:{fontSize:16,fontWeight:'bold'}, left:'2%', height:60, textid:bodrow.fieldByName('mid'), color:'white' }); rows.add(postlbl); data.push(rows); bodrow.next(); } win.bod_table.setData(data); win.bod_table.addEventListener('click', function(e) { //alert(e.row.textId); var meminfoWindow = require('ui/views/membersInfo'); var meminfoWindow = new meminfoWindow('Profile Info',e.row.textId); meminfoWindow.open(); }); bodrow.close(); db.close(); }