Grid loading....

I am loading the grid with json. I want to have a loading message in the grid up until the data returns from the server. I am using the standard version of the grid. Which loading event can I use?

onXLS and onXLE event can be used for such task.
Also, you can use callback of load command

grid.load("some.json",function(){ alert("Message"); },"json")