Greetings,
I’m trying to figure what event fires AFTER the grid is loaded and ready to be shown. I want to hide the effect of the grid auto-increasing to hold the data from the client, displaying only a loading animation (while the grid is in a div with display:none)
Only after the grid did all its stuff (loading, resizing, etc), the div container will fade in.
The best I got so far was the onXLE event, but this still let me see the grid resizing. The onResizeEnd event didn’t work.
Best regards,
I don’t like bumping my own posts, but I’d really like an answer here. 
Grid loading triggers 2 events onXLS - when loading starts and onXLE - when loading ends
Basically onXLE is the necessary one, at that moment data loaded and rendered. ( also you can use second parameter of load method which can be a callback method )
(while the grid is in a div with display:none)
Be sure to call grid.setSizes() after switching visibility of grid’s container ( grid can’t set all sizes correctly while in invisible state )
but this still let me see the grid resizing.
grid.setSizes() after switching display:none property must help