How can I get that information from within the function associated to this event?
Thanks
There is no stable way, but next can be used
grid.attachEvent(“onXLE”,function(grid,a,b,xml){
alert(xml.doXPath("//rows")[0].getAttribute(“parent”);
});
Also, it possible to use onDynXLS event, which fire each time when branch XML loading started, and provides item ID as parameter ( there is no relative onDynXLE event )
And what about the node responsible on the onXLS event?
It should be easier, shouldn’t it?
Thanks
And what about the node responsible on the onXLS event?
mygrid.attachEvent(“onDynXLS”,function(id){
alert("loading for "+id);
return true;
});