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