Hi
Is there any way to enable pagination in dhtmlXGridFromTable ??
Thanks for answer in advance
The grid can be switched to paging mode in any moment of time so you can use something similar to next
   mygrid = new dhtmlXGridFromTable(‘tblToGrid’);
   mygrid.enablePaging(true,2,2,‘zoneA’);
   mygrid.changePage(1);
Yes… I DO love DHTMLX support!
That changePage was the thing i didn’t know
Thank you very much!