| Sample: dhtmlxGrid | Paginal Output:dynamic loading | dhtmlxGrid main page |
dhtmlxGrid supports paginal output. You can use it togather with dynamical loading or separately.
In sample below number of rows per page set to 30 and number of pages per group set to auto (null) - based on rows in first portion loaded from server
Autoloading delivers 300 more records each time previous 300 was consumed. Number of total records is 2000.
<div id="gridbox" width="100%" height="250px" style="background-color:white;overflow:hidden"></div> <script></script>mygrid = new dhtmlXGridObject('gridbox'); ... //should be called before init() mygrid.enablePaging(true,30,null,"pagingArea",true,"recinfoArea"); ... mygrid.init(); mygrid.loadXML("dynload_slow.php");
| © DHTMLX LTD. All rights reserved |