Sub tree issue

I have a problem in subtree. Grid are not displaying in layout. I am using pro version. Please help me.

var tree = testTabbar.cells(“test_id”).attachTree();
tree.setImagePath(“/dhtmlx_suite/codebase/imgs/dhxtree_skyblue/”);
tree.enableSmartXMLParsing(true);
tree.loadXML(“<?php echo $baseUrl ?>/test/tree.xml”,function(){
mygrid = new dhtmlXGridObject(‘gridbox’);
mygrid.setImagePath(“/dhtmlx_suite/codebase/imgs/”);
mygrid.setHeader(“Sales, Book Title, Author,Price,In Store,Shipping,Bestseller,Date of Publication”);
mygrid.setInitWidths(“50,150,100,80,80,80,80,200”)
mygrid.setColAlign(“right,left,left,right,center,left,center,center”)
mygrid.setColTypes(“dyn,ed,stree,price,ch,co,ra,ro”);
mygrid.setSubTree(tree,2,0);
mygrid.init();

	mygrid.loadXML("/test/linked_grid.xml"); 
});

Unfortunately it’s not available to attach a sub tree to an layout/tabbar/accordion cell.
It can only be attached to a simple html div container.

Thanks… Its working fine.