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!

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”
    dhtmlx.com/docs/products/dhtmlxG … d_fastmode

grid.startFastOperations();
adding 500 rows
grid.stopFastOperations()

Thanks! it worked