Multiple Grid Edit Mode

Hi,

I have 3 grids on a page.

Grid1 ONSELECT loads Grid2 and Grid2 ONSELECT loads Grid3. Which works ok. The problem comes when i try to EDIT Grid1, it stays for a few second on edit mode as the 2 grids(Grid2,Grid3) load, then it returns to SELECT mode.

How can i make Grid1 to remain on edit mode as the other 2 grid continue to load.

Thx.

Ndegwer | Kenya

You may try to use onSelectStateChanged event instead of onrowSelect.
For example:

mygrid.loadXML("grid.xml", function (){ mygrid.attachEvent("onSelectStateChanged", function(id){ mygrid2.clearAndLoad("grid2.xml") }); });

Thx for the reply but onSelectStateChanged is allowing for editing BUT not loading Grid2

Unfortunately the issue cannot be reconstructed. loading of the second grid works well for us.
If issue still occurs - please, provide any kind of sample with the expected behavior.

I have tried again the onSelectStateChanged and it has now worked! fine

Thanks.