grid.parse(xmlString), when do u knw all the rows r rendered

Hello,

I am using distributed parsing and parsing an xmlString to display in the grid.

grid.enableDistributedParsing(true,40,250);

grid.startFastOperations();
grid.parse(xmlString);
grid.stopFastOperations();

I have situation where, i have an overlay over my web page so that i can prevent users from clicking
onto the webpage utill all the rows have been rendered.

My problem is i have to loop through all the rows to find out has everything been rendered yet,
which is very ugly because i am using short time intervals to test it…

is there a way that i would know when all the rows have been attached to the grid.

Thank you…

You can use “onDistributedEnd” event docs.dhtmlx.com/doku.php?id=dhtm … ributedend

Thank you so much