http://pastie.org/1620390
4 Answers
Try this:
var cineData = []; for(var i in cinesList) { var thisItem = cinesList[i]; Ti.API.info('Cines Nombre: ' + thisItem.Nombre + 'ID:'+ thisItem.ID ); cineData.push({title:thisItem.Nombre, hasChild:true, cineID:thisItem.ID}); } var tableview = Titanium.UI.createTableView({data:cineData,minRowHeight:58});
Try this, http://pastie.org/1620708
No't Working :(
No't working :(
Your Answer
Think you can help? Login to answer this question!