SMART datagrid v.1 > Classes > GridBase
DataLudi.GridBase.onDescendantDataCountChanged event
It will be fired when descendantDataCount is changed.
function onDescendantDataCountChanged (grid: GridBase, newCount: Integer, oldCount: Integer);
- Returns
- Void
- Parameters
- grid - GridBase.
- newCount - Integer.
- oldCount - Integer.
Code -1
grid.onDescendantDataCountChanged = function (grid, newCount, oldCount) {
console.log('descendant data count changed: ' + newCount);
};
- See Also
- descendantDataCount
- descendantRowCount
- rowCount
- onRowCountChanged
- onDescendantRowCountChanged
- Examples
- Row Counts
- Tree Row Counts