SMART datagrid v.1 > Classes > GridBase
Return the top Rows being displayed in grid as array.
You can get the bottom terminal rows through getLeafRows.
$('#checkTopRows').click(function () {
var rows = grid.getTopRows();
grid.checkAll(false);
grid.checkRows(rows);
});