Hi all,<br><br>In my GeoExt web app I have created a TreePanel, in which I have both a BaseLayerContainer and OverlayLayerContainer as its children. This is the JSON config:<br><br>layerTreeJsonConfig = [<br>        {    // baselayer container<br>
            nodeType: &quot;gx_baselayercontainer&quot;,<br>            text: &#39;basemap&#39;<br>        },<br>        {    // overlayer container<br>            nodeType: &quot;gx_overlaylayercontainer&quot;,<br>            text: &#39;overlays&#39;,<br>
            expanded: false,<br>            // render the nodes inside this container with a radio button,<br>            // and assign them the group &quot;overlayers&quot;.<br>            loader: {<br>                baseAttrs: {<br>
                    radioGroup: &quot;overlayers&quot;,<br>                    uiProvider: &quot;layernodeui&quot;<br>                }<br>            }<br>        }        <br>    ];<br><br>I know and I was able to register &quot;dblclick&quot; listener on the TreePanel, now my question is whether there is a way to register different event handler on those two different layer container? The reason I am asking is that I am trying to another custom layer container which inherits from OverlayLayerContainer, and I would like wrap some event handler inside that custom layer container instead of adding it on TreePanel for all.<br>
<br>Thanks.<br><br> <br>