SMART datagrid v.1 > Classes > GridBase
The number of Grid Rows being displayed in the current screen.
The number is excluding the row which displays only partial bottom. You can know the number including the row which displays partially through displayRowCount.
$('#scroll').click(function () {
var count = grid.fullDisplayRowCount();
grid.setTopIndex(100 - count / 2);
});