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: "treepanel",<br> title: "Layers",<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: "mini",<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>