Categories | Question details Back To List | ||
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 }); |