Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by J.van Eck on Jul 24, 2009 04:28
open dhtmlx forum
Event on complete loading data grid

Hi,

we want to run a function after the grid completed load the whole xml. Is there such an event/function?

thanks in advance,

Jiri
Answer posted by dhxSupport on Jul 24, 2009 05:21
You can use 2nd parameter of load() method or "onXLE" method:
mygrid.load("grid.xml",function(){
//grid was fully loaded
});

mygrid.attachEvent("onXLE",function(){
//grid was fully loaded
});