SMART datagrid v.1 > Classes > GridBase
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.
$('#scroll').click(function () {
var count = grid.displayRowCount();
grid.setTopIndex(100 - count / 2);
});