Sencha 1.0(ish) doesn’t have an option for tying a different event for the onItemDisclosure tap than the itemtap event. Here’s a convenient workaround. Set the onItemDisclosure to true to force it to show up, but give all the work to the itemtap event.
onItemDisclosure : true,
listeners : {
itemtap : function(record,index,item,e){
if (e.getTarget('.x-list-disclosure')) {
Ext.Msg.alert("Disclosure clicked!");
} else {
Ext.Msg.alert("Item clicked!");
}
}
}
FIN!

