SMART datagrid v.1 > Classes > TreeDataSet
DataLudi.TreeDataSet.onRowUpdated event
It will be fired just after updating values of the existing Row.
Just before updating, onRowUpdating event will be fired. And, after this event, onDataChanged event will be fired in order.
function onRowUpdated (ds: TreeDataSet, row: TreeDataRow, field: Integer);
- Returns
- Void
- Parameters
- ds - TreeDataSet.
The data set.
- row - TreeDataRow.
- field - Integer.
The index of field of which value is changed when an event is fired by calling
setValue. (ver 1.3)
- note
- When call setValue, if do not specify onValueChanged event or do not explicitly return true in onValueChanged event handler, onRowUpdated event will be fired. At this point, field parameter will be transferred. (ver 1.3)
Code -1
dataset.onRowUpdated = function (ds, row) {
// Update the screen in which displays the information of row.
refrehInfo();
};
- See Also
- onRowUpdating
- TreeDataRow
- Tree Overview
- Examples
- Tree Data Set
- Hello Tree