I added two changes “Check checks” and “click on an item” in Ext.tree.Panel. But I noticed that when a check is changed, it also triggers an element click event. I want to prevent this element click event.
listeners : { checkchange: function(node, checked, eOpts){ alert('this is check change'); }, itemclick : function(obj, record, item, index, e, eOpts){ alert('this is item click'); } }
These are listeners in the Ext-tree. When changing a check, I want to receive only this warning. How is this possible?
source share