Which event after onDynXLS ?

Hi,

We found that onDynXLS will occurs before dynamiccaly load rows of our treegrid.
But we need to know when this loading is done in order to show a waiting message while loading…

Could you help us finding a way ? We did not found any event fired after onDynXLS…

Finally, we found that :

treeQ.attachEvent(“onOpenStart”, function(id,state){
showLoading();
return true;
});
treeQ.attachEvent(“onOpenEnd”, function(id,state){
hideLoading();
return true;
});

Also you can use “onXLE” event