Dear list member,<br><br>I have two GeoExt.tree container. One is BaseLayerContainer and the other one is OverlayLayerContainer.<br>I aim to merge them in a single Ext.tree.TreePanel so that they are both seen but seperately. The following procedure does not work:<br>
(They are trying to load the layers but they are not loaded)<br><br><i>    var layerTree = new Ext.tree.TreePanel({<br>        id: &quot;treepanel&quot;,<br>        title: &quot;Layers&quot;,<br>        root: new Ext.tree.AsyncTreeNode({<br>
            expanded: true,<br>            children: [layerTreeBase, layerTreeFeaturesInternal]<br>        }),<br>        rootVisible: false,<br>        split: true,<br>        collapsible: true,<br>        collapseMode: &quot;mini&quot;,<br>
        autoScroll: true,<br>        lines: false,<br>        enableDD: true<br>    });</i><br><br>when I modify root as shown below the application works but only with baselayers.<br><i>root: layerTreeBase<br><br></i>What should I do in order to display both baselayers and other layers in a tree format.<i><br>
<br></i>Best Regards,<br>Ozgur<br>