SMART datagrid v1.4 > Classes > GridBase
DataLudi.GridBase.onDescendantRowCountChanged event
descendantRowCount가 변경됐을 때 변경되는 이벤트.
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