In sencha touch v1 you could do this:
This doesn't work in Touch 2 - so there must be a new way of capturing the label tap event.PHP Code:
listeners:
{
labelEl:{
tap:function () {
var obj = Ext.getCmp('recall-0-1');
if (obj.isChecked()) { obj.uncheck(); }
else { obj.check(); }
}
}
}
Any clues much appreciated?
regards
Tom