SMART datagrid v.1 > Classes > GridBase
It will be fired when checked state of multiple Grid Rows is changed.
When the state of a single row is changed, onRowChecked event will be fired. And, in the case of calling toggleChecked, onCheckedChanged rather than this event will be fired.
grid.onRowChecked = function (grid, rows, checked) {
for (var i = 0; i < rows.length; i++) {
console.log(rows[i] + "No. row checked : " + checked);
}
};