SMART datagrid v.1 > Classes > GridBase

[ grids ver.1.3.0]   Back  Forward

DataLudi.GridBase.displayRowCount  property

The number of Grid Rows being displayed in the current screen. 

It is the number also containing rows being displayed only some bottom parts. You can know the number of rows being displayed entirely through fullDisplayRowCount

Getter
function displayRowCount(): Integer
Code -1
    $('#scroll').click(function () {
        var count = grid.displayRowCount();
        grid.setTopIndex(100 - count / 2);
    });
See Also
fullDisplayRowCount
GridRow
topIndex
Examples
Focused Cell