i am using Ext.grid.CheckboxSelectionModel for checkbox on each row of the grid.
I want to stop event propagation when the check box is clicked. The below code is not working.
varcheckboxSel = new Ext.grid.CheckboxSelectionModel({
listeners: {
click: function(evt) {
evt.stopPropagation();
}});
}
Please help!