This question is locked. New answers and comments are not allowed.
I am currently using an Ajax grid with the following client side events.
When i manually call grid.rebind in JavaScript I display my own UI blocking screen. Within the OnRowDataBound I manipulate the html of the grid cells. After all of the rows have been bound, or possibly 0, I need to be able to hook into some event, so I can remove my UI blocking screen from being displayed. Are there any other client side events that I can hook into, such as gridIsReady?
- .OnRowDataBound("onRowDataBound")
- .OnLoad("onLoad")
- .OnDataBinding("onDataBinding")
When i manually call grid.rebind in JavaScript I display my own UI blocking screen. Within the OnRowDataBound I manipulate the html of the grid cells. After all of the rows have been bound, or possibly 0, I need to be able to hook into some event, so I can remove my UI blocking screen from being displayed. Are there any other client side events that I can hook into, such as gridIsReady?