<div>Hello guys...</div><div> </div><div>My <font size="2">TreePanel isn´t working fine on IE9 ... It is rendered fine, but the click event didnt fire anything...  It dont check/uncheck the checkboxes either...</font></div>
<div> </div><div>Its working fine on Firefox 3,4, IE8 and Chrome 10...</div><div> </div><div>My TreePanel code:</div><div> </div><div> MakeTreeView = function () {<br>    var _tree = new Ext.tree.TreePanel({      <br>       border : false,<br>
       bodyBorder : false,      <br>        renderTo :&quot;divCamada&quot;,<br>        width: 200,<br>        autoScroll: true,<br>        loader: new Ext.tree.TreeLoader({<br>            applyLoader: false<br>        }),<br>
        root: {<br>            nodeType: &quot;async&quot;,<br>            children: [<br>            {<br>                nodeType: &quot;gx_baselayercontainer&quot;,<br>                expanded: true,<br>                text: &quot;Google&quot;                <br>
            },<br>            {<br>                text: &quot;Ferrovia&quot;,<br>                expanded: true,<br>                children: [               <br>                    {<br>                        nodeType: &quot;gx_layerparam&quot;,<br>
                        layer: &quot;Estacao&quot;,<br>                        param: &quot;LAYERS&quot;,<br>                        item: &quot;Estacao&quot;,<br>                        text: &quot;Estação&quot;,<br>                        checked: true                    },<br>
                    {<br>                        nodeType: &quot;gx_layerparam&quot;,<br>                        layer: &quot;Linha&quot;,<br>                        param: &quot;LAYERS&quot;,<br>                        item: &quot;Linha&quot;,<br>
                        text: &quot;Linha&quot;,<br>                        checked: true                    }    <br>                ]<br>            }              <br>            ]<br>        },<br>        rootVisible: false,<br>
        lines: true<br>    });</div><div>    return _tree;<br>}</div>