Subgrid overlaps existing rows on first expansion

Hello,

I am having an issue when the subgrid is expanded it overlaps the adjacent bottom row.
I read in the documentation and this forum that I should use the ongridreconstructed.
So I am using that after I load the xml but no avail.
Here is what I am doing wrong,

function setgrid2(acct_id, gtype) {
mygrid2 = new dhtmlXGridObject(acct_id+"."+gtype);
mygrid2.setImagePath("/crm/assets/dhtmlxgrid/imgs/");
mygrid2.setSkin(“dhx_web”);
mygrid2.loadXML(path+“get_grid_xml.php?gtype=”+gtype+"&acct_id="+acct_id);
myDataProcessor2 = new dataProcessor(path+“proc_grid_data.php?gtype=”+gtype+"&acct_id="+acct_id);
myDataProcessor2.enableDataNames(true);
myDataProcessor2.init(mygrid2);

mygrid2.attachEvent(“onSubGridCreated”,function(subgrid){
subgrid.setImagePath("/crm/assets/dhtmlxgrid/imgs/");
subgrid.loadXML(path+“get_grid_xml.php?gtype=sub_action_result_followup&acct_id=2”);
subgrid.callEvent(“onGridReconstructed”,[]);
return false; // block default behavior
})

Also,
If I collapse the sub grid and expand it again it’s fine.

Thank you for your help

Unfortunately the issue cannot be reconstructed.
If issue still occur - please, open ticket at support.dhtmlx.com and provide a complete the where the issue can be reconstructed.