SMART datagrid v1.4 > Classes > GridBase

[ grids ver.1.3.6]   Back  Forward

DataLudi.GridBase.onDescendantDataCountChanged  event

descendantDataCount가 변경됐을 때 변경되는 이벤트. 

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