Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Kurt on Mar 03, 2009 17:42
open dhtmlx forum
More than 5000 records are displayed in dhtmlxGrid

Hi team

There more than 5000 records are displayed in dhtmlxGrid .

In the implementation process, the pop-up dialog box including message script execution is too slow
 
can you tell me how to solve the problem ?
 
thanks.
Answer posted by dhxSupport on Mar 04, 2009 01:32

To increase 5000 rows loading performance better to use smart rendering mode with dinamically loading. You can test it here http://dhtmlx.com/docs/products/dhtmlxGrid/samples/loading_big_datasets/50000.html?un=1236158424000

If you want show some pop up dialogs better to wait until loading is over. To detect when loading is done you can use "onXLE" event (at PRO version only):

mygrid.attachEvent("onXLE",function(gridObj,rows_cound){

alert("loading is over");

})