SMART datagrid v.1 > Classes > GridDataSet

Back  Forward

DataLudi.GridDataSet.onRowsUpdated  event

It will be fired when one or more rows have been updated by calling updateRows

In rows, it contains the index of rows which have been updated actually. 

function onRowsUpdated (ds: GridDataSet, rows: [Integer]);
Returns
Void
Parameters
ds - GridDataSet.
The data set.
rows - [Integer].
The array of row number which has been changed.
Code -1
    dataset.updateRows = function (ds, rows) {
        alert("Multiple rows have been updated.");
    }
See Also
onRowsUpdating
onValuesUpdating
updateRows
updateValues
Examples
Grid Data Set Edit