SMART datagrid v.1 > Classes > GridDataSet
It will be fired just before deleting the data row.
If explicitly return false within this event handler, the requested deleting will be cancelled.
ds.onRowDeleting = function (ds, row) {
var value = ds.getValue(row, 'status');
if (row >= 10 && value != 'x') {
return false;
}
}