I am using getItemTextTpl to add a checkbox component to a nested list - I would also like to be able to override the default tap event so that when the checkbox is checked a popup message shows and the list does not advance to the next items. Please see below for my configuration - I am able to capture the checkbox check event but do not no how to override the default behavior for nestedlist. Thanks for your help and please let me know if I can clarify any details - if it helps I am using sencha architect
Nestedlist config:
getItemTextTpl: function(recordnode) {
return '<table width="100%"><row>' +
'<tr><td width="100%" align="left" width="100%" valign="bottom"><div class="view"><input type="checkbox" <tpl if="done">checked</tpl> /> {name}</td></row></table>';
}
Controller:
onNestedlistInitialize: function(component, options) {
// setup taskList to listen on the tap on the checkbox and show a popup window
component.element.on({
tap: function(e, el) {
console.log('checkbox tapped');
//need to override nestedlist tap event and show popup message
}
});