Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Stevo on Apr 01, 2008 13:59
open dhtmlx forum
Pagination in dhtmlXGridFromTable ?

Hi

Is there any way to enable pagination in dhtmlXGridFromTable ??

Thanks for answer in advance :)
Answer posted by Support on Apr 02, 2008 00:29
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);
Answer posted by Stevo on Apr 02, 2008 01:06
Yes... I DO love DHTMLX support!

That changePage was the thing i didn't know

Thank you very much!