I have a checkbox column
{ title: "", dataIndx: "state", maxWidth: 30, minWidth: 30, align: "center",
cb: { header: true},
type: 'checkBoxSelection', cls: 'ui-state-default', resizable: false, sortable: false, editable: false,
filter: { type: "checkbox", subtype: 'triple', condition: "equal", listeners: ['click'] }
},
I would like to enable a toolbar button if one or more rows are selected and disable it when no rows are selected. Can this be done with the History event? Is there another simple way or does it require a listener on the filter? Thanks.