SMART datagrid v.1 > Classes > GridDataSet

Back  Forward

DataLudi.GridDataSet.onRowDeleted  event

It will be fired if the data row is deleted by calling deleteRow

After firing this event, onRowCountChanged event will be fired. And, just before deleting, onRowDeleting will be fired. 

function onRowDeleted (ds: GridDataSet, row: Integer);
Returns
Void
Parameters
ds - GridDataSet.
The data set.
row - Integer.
The number of deleted row.
Code -1
    ds.onRowDeleted = function (ds, row) {
        console.log('Data row deleted at ' + row);
    };
See Also
onRowCountChanged
onRowDeleting
deleteRow
Examples
Grid Data Set Edit