I have a normal list in Sencha Touch. Now I need to mark a single item in that list as a "disclosure" item.
The functionality should be sth like this:
onItemDisclosure: function(record) {
if (record.data.type != "link") return false; //not a disclosure
return true; //disclosure item
}
Is this possible to achieve?
Try this: