SMART datagrid v.1 > Classes > GridView
The rows being displayed in the current page when grid is in Paging state.
If do not specify this property, it will display the data rows which are determined by pageSize and pageIndex. You can set the page and rows at the same time by setPageAndRows. Please refer to Paging Rows example.
$('#incpage').click(function (ev) {
grid.setPageIndex(grid.pageIndex() + 1);
grid.setPageRows([1, 2, 3, 4, 5]);
});