SMART datagrid v.1 > Classes > GridDataSet
It will be fired after changing the value of one field of data row by calling setValue.
Just before changing, onValueChanging event will be fired. And, if do not specify this event or do not explicitly return true in the event handler, onRowUpdated event will be fired additionally.
After firing all events above, onDataChanged event will be fired additionally.
ds.onValueChanged = function (ds, row, field) {
var value = ds.getValue(row, field);
$('#salary').val(value);
};