Sub Grid renders over Grid on first open

Hi,

I’ve been stuck for some time trying to see what I can do to change the behavior of the sub grid when they first open.

On the first open, the sub grid renders over the content in the rest of the grid like this:


However, when the sub grid is closed and opened again, it comes up like this:


Is there anything that can be done so that it works consistently like the second image?

Thanks

Please, try to call the next code after the data is loaded into your subgrid:

subgrid.load("data.xml",function(){ subgrid.callEvent("onGridReconstructed",[]); subgrid.setSizes(); mygrid.setSizes(); })

That works perfectly, thank you! :smiley: