Delay LoadXML?

I have three grids on a page. On last grid, the data does not show even though LoadXML gets the data.

If I put an alert statement before the loadXML of the last grid on page, the data is displayed in last grid. so I would guess some issue with synch/Asych.

Any good solutions?

It doesn’t sound as any known issue.
If it still occurs - please provide any kind of sample or demo link where it can be checked.

I’m sorting through an issue with load callbacks and event firing.
Perhaps what you are experiencing is similar.
Have you tried adding a callback with an alert?
loadXml(xmlfile.xml, callback);
function callback() {
alert(“Callback”);
}
Then perhaps you can see in the console if you get the alert(s)
Prior to the GET xmlfile.xml or after?
Prior to the grid display(s) or after?