Hi,<br><br>Is it possible to use gx_legendimage within a tree config? I&#39;d like to just add a single static legend graphic below a layer in the tree. <br>This is what I was unsuccessfully trying.<br><br>    var treeConfig = [<br>
        <br>         { nodeType: &quot;gx_baselayercontainer&quot;,<br>           text: &#39;Base Layers&#39;,<br>           expanded: false,<br>           loader: {   <br>                      filter: function(rec) {<br>
                             return (rec.get(&quot;layer&quot;).options.group == &quot;baselyrs&quot;);                       <br>                   }                      <br>           } <br>        },<br>        { nodeType: &quot;gx_layercontainer&quot;,<br>
          text: &#39;Vector&#39;,<br>          expanded: true,<br>          loader: {<br>                  filter: function(rec){<br>                        return (rec.get(&#39;layer&#39;).options.group == &quot;veclyrs&quot;);                          <br>
                  },<br>                  baseAttrs: {<br>                      uiProvider: &quot;custom_ui&quot;<br>                  },<br>                  createNode: function(attr) {<br>                    <br>                    attr.component = {<br>
                        xtype: &quot;gx_legendimage&quot;,<br>                        defaultImgSrc: &quot;image1.JPG&quot;,<br>                        url: &quot;image1.JPG&quot;<br>                   }<br>                  return GeoExt.tree.LayerLoader.prototype.createNode.call(this, attr);<br>
                  <br>                }<br>    <br>           }<br>     }.......More Layers]<br><br>Thanks!<br><br>