SMART datagrid v1.4 > Classes > DataSet
DataLudi.DataSet.onRowCountChanged event
추가, 삭제 등으로 데이터셋 전체 행 개수가 변경되면 발생한다.
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 DataRows
- Set RowCount
- GridDataSet Edit