SMART datagrid v.1 > Classes > EditOptions
If specify as true, when the user changes the checked state of the entire rows by clicking check all box with mouse, GridBase.onRowChecked event will be fired in each individual row of which state is changed. After have changed all, onAllChecked event will be fired.
Defaults to false.
grid.setOptions({
edit: {
rowEventsWhenCheckAll: true
}
});
grid.setEditOptions({
rowEventsWhenCheckAll: true
});
grid.editOptions().setRowEventsWhenCheckAll(true);