SMART datagrid v.1 > Classes > GridBase

[ grids ver.1.3.6]   Back  Forward

DataLudi.GridBase.onDescendantRowCountChanged  event

It will be fired when descendantRowCount is changed. 

function onDescendantRowCountChanged (grid: GridBase, newCount: Integer, oldCount: Integer);
Returns
Void
Parameters
grid - GridBase.
newCount - Integer.
oldCount - Integer.
Code -1
    grid.onDescendantRowCountChanged = function (grid, newCount, oldCount) {
        console.log('descendant row count changed: ' + newCount);
    };
See Also
descendantRowCount
descendantDataCount
rowCount
onRowCountChanged
onDescendantDataCountChanged
Examples
Row Counts
Tree Row Counts