SMART datagrid v.1 > Classes > TreeDataSet
It will be fired just after changing one field value of 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 this event handler, onRowUpdated event will be fired additionally.
After firing all above events, onDataChanged event will be fired additionally.
dataset.onValueChanged = function (ds, row, field) {
if (field == FLD_STATE) {
$('state').val(ds.getValue(row, field));
}
};