SMART datagrid v.1 > Classes > GridDataSet
It will be fired just before changing the data row.
If explicitly return false within this event handler, changing will not proceed. After changing the row, onRowUpdated event will be fired.
ds.onRowUpdating = function (ds, row, values) {
if (values[0] != 'value1') {
return false;
}
}