Categories | Question details Back To List | ||
Grid is built in DOM Event How can I detect, that grid is built in DOM and it ready for usage? Any events or functions? Thanks Answer posted by Support on Oct 30, 2008 08:26 If you load grid from a file, you can use onXLE event handler: function doOnLoadingEnd(){ /* your code here */ } grid.attachEvent("onXLE",doOnLoadingEnd); |