SMART datagrid v1.4 > Classes > GridBase
DataLudi.GridBase.onDisplayRowCountChanged event
현재 화면에 표시되고 있는 그리드행 수 즉, displayRowCount가 변경됐을 때 변경되는 이벤트.
function onDisplayRowCountChanged (grid: GridBase, newCount: Integer, oldCount: Integer);
- Returns
- Void
- Parameters
- grid - GridBase.
- newCount - Integer.
- oldCount - Integer.
Code -1
grid.onDisplayRowCountChanged = function (grid, newCount, oldCount) {
console.log('Display row count changed: ' + newCount);
};
- See Also
- displayRowCount
- rowCount
- onRowCountChanged
- Examples
- Row Counts
- Tree Row Counts