Event handler for completion of loadXML

Hello,

I tried to do some cell formatting after loading the grid with mygrid.loadXML. This does not work; I assume that loadXML was not completed when I call the formatting API.

I there an event handler which can be called on completion of loadXML?

Karl

Hi Karl,

If you are loading xml content from server you can use like below.

mygrid.load(‘url of xml’,somefunction);


function somefunction(){
/call the formatting API/
}

Victor Johnson