alloy
Version:
Appcelerator Titanium MVC Framework
14 lines (11 loc) • 339 B
JavaScript
var rows = [];
var titles = ["Lord of the Rings", "Harry Potter", "Eragon", "Wheel of Time", "Narnia"];
for(var i=0,j=titles.length;i<j;i++) {
rows.push(Alloy.createController('row', { title: titles[i]}).getView());
}
$.table.data = rows;
function doFoo(num){
alert('Your rating = ' + num);
}
$.starwidget.init(doFoo);
$.index.open();