Skip to content

Instantly share code, notes, and snippets.

@appcdr
Created August 24, 2011 13:54
Show Gist options
  • Save appcdr/1168119 to your computer and use it in GitHub Desktop.
Save appcdr/1168119 to your computer and use it in GitHub Desktop.
TableViewSection sample
var win = Ti.UI.createWindow();
var tableview = Ti.UI.createTableView();
var section = Titanium.UI.createTableViewSection();
section.headerTitle = "Hello";
var row1 = Titanium.UI.createTableViewRow({title:"Hello 1"});
var row2 = Titanium.UI.createTableViewRow({title:"Hello 2"});
section.add(row1);
section.add(row2);
tableview.setData([section]);
win.add(tableview);
win.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment