SMART datagrid v.1 > Classes > GridDataSet
It will be fired just before updating multiple rows by calling updateRows.
If explicitly return Boolean false within this event handler, row updating will be cancelled. And, just after updating, onRowsUpdated event will be fired.
ds.onRowsUpdating = function (ds, row, rows, start, count) {
if (!$('#updatable')[0].checked) return false;
};