Skip to content

Instantly share code, notes, and snippets.

@rileydutton
Created April 28, 2011 16:03
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save rileydutton/946647 to your computer and use it in GitHub Desktop.
Save rileydutton/946647 to your computer and use it in GitHub Desktop.
Collapsable/Expandable Table View Rows in Titanium Mobile
var container = Ti.UI.createView({backgroundColor: "white", layout: "vertical"});
var layout = [
{
title: "Parent 1",
isparent: true,
opened: false,
sub: [
{
title: "Child 1"
},
{
title: "Child 2"
}
]
},
{
title: "Parent 2",
isparent: true,
opened: false,
sub: [
{
title: "Child 3"
},
{
title: "Child 4"
}
]
}
];
var tableView = Ti.UI.createTableView({
style:Titanium.UI.iPhone.TableViewStyle.GROUPED,
top: 0,
height: Ti.Platform.displayCaps.platformHeight,
data: layout
});
tableView.addEventListener("click", function(e) {
//Is this a parent cell?
if(e.row.isparent) {
//Is it opened?
if(e.row.opened) {
for(var i=e.row.sub.length; i > 0; i = i - 1) {
tableView.deleteRow(e.index + i);
}
e.row.opened = false;
}
else {
//Add teh children.
var currentIndex = e.index;
for(var i=0; i < e.row.sub.length; i++) {
tableView.insertRowAfter(currentIndex, e.row.sub[i]);
currentIndex++;
}
e.row.opened = true;
}
}
});
container.add(tableView);
@abo-elleef
Copy link

thanks this helps me alot
but
need to update row to rowData
and
update the open value is not real update the property value in the rowData
so it keep add rows all the time
instead you can check that the title of the next row is the title of the first child if true so the subtable is opened

@minakshi00
Copy link

Hi, When I am click on 0 index Row, I am getting error "No row at this index".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment