Hi,
First ignore my previous question - There was a typo in the spelling of the attachEvent (this typo was copied from the answer I got…)
My problem now that the handler function attached to onDynXLS is not called (I added an alert). The data is loaded (>15k rows), and smart rendering is working but the handler is not called.
Here is my code:
mygrid.enableSmartRendering(true);
mygrid.attachEvent(“onXLE”,updateNumberOfLines);
mygrid.attachEvent(“onDynXLS”,function(pos,count){alert(“onDynXLS”); return false; });
mygrid.init();
mygrid.loadXML(gGridQuery,function(){ mygrid.setSizes(); });
==> Do you know how I can fix this?
Thanks, Michal