enables smart paging mode
mode | boolean | enable/disable paging mode |
pageSize | number | count of rows per page |
pagesInGrp | number | count of visible page selectors |
pagingControlsContainer | id|HTMLElement | ID or container which will be used for showing paging controls |
showRecInfo | boolean | enable/disable showing of additional info about paging state |
pagingStateContainer | id|HTMLElement | ID or container which will be used for showing paging state |
Available only in PRO Edition
//enable paging with 10 rows per page
myGrid.enablePaging(true,10,5,"pagingArea",true,"recinfoArea");
Back to top