Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Ashwini on May 20, 2008 06:01
open dhtmlx forum
page load takes long

Am loading some 500 rows using mygrid.addRow() method(not using xml)...It takes a long time to load..Please help!
Answer posted by Support on May 20, 2008 06:15
The adding rows one by one is slowest way to load data.

You can check dhtmlxgrid 1.6 which allows faster loading by addRow and very fast loading from JS array ( which can be used instead of addRow commands )
In case of dhtmlxgrid 1.5 you can try to use "fast mode"
    http://dhtmlx.com/docs/products/dhtmlxGrid/doc/guide.html#grid_fastmode

grid.startFastOperations();
adding 500 rows
grid.stopFastOperations()
Answer posted by Ashwini on May 20, 2008 06:27
Thanks! it worked