для iphone или android?
/* store sections in here */
var mySections = [];
/* create section */
var mySection[0] = Ti.UI.createTableViewSection({
headerTitle:"first section"
})
/* tableview row to store checkbox */
var tableviewrow0 = Ti.UI.createTableViewRow();
/* if you don't want to build your own UI element you need
* to use the provided elements. checkboxes aren't standard
* ui elements, so you need to use switcher
*/
var switcher0 = Ti.UI.createSwitcher({
value: true, // or false
right: 10 // place it onto right side
});
tableviewrow0.add(switcher0);
/* label */
var label0 = Ti.UI.createLabel({
value:"option one",
textAlign:"left",
left:10
});
tableviewrow0.add(label0);
/* add row to section*/
mySection[0].add(tableviewrow0);
/* tableview */
var tbv = Ti.UI.createTableView({
data:mySection
});
win.add(tbv);
вам нужно продолжить для следующих строк и разделов.я не скомпилировал его, так что будьте осторожны;это просто идея.для андроида есть особые настройки;заглянуть в кухонную раковину .