SMART datagrid v.1 > Classes > DataSet

Back  Forward

DataLudi.DataSet.onRowCountChanged  event

It will be fired when the number of all rows of data set is changed by appending, deleting, etc. 

function onRowCountChanged (ds: DataSet);
Returns
Void
Parameters
ds - DataSet.
Code -1
    ds.onRowCountChanged = function (ds) {
        alert('Row count changed: ' + ds.rowCount());
    };
See Also
rowCount
onDataChanged
GridDataSet.onRowInserted
GridDataSet.onRowsInserted
GridDataSet.onRowDeleted
GridDataSet.onRowsDeleted
Examples
Set Data Rows
Set Row Count
Grid Data Set Edit