Hello guys...
My 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...
Its working fine on Firefox 3,4, IE8 and Chrome 10...
My TreePanel code:
MakeTreeView = function () {
var _tree = new Ext.tree.TreePanel({
border : false,
bodyBorder : false,
renderTo :"divCamada",
width: 200,
autoScroll: true,
loader: new Ext.tree.TreeLoader({
applyLoader: false
}),
root: {
nodeType: "async",
children: [
{
nodeType: "gx_baselayercontainer",
expanded: true,
text: "Google"
},
{
text: "Ferrovia",
expanded: true,
children: [
{
nodeType: "gx_layerparam",
layer: "Estacao",
param: "LAYERS",
item: "Estacao",
text: "Estação",
checked: true },
{
nodeType: "gx_layerparam",
layer: "Linha",
param: "LAYERS",
item: "Linha",
text: "Linha",
checked: true }
]
}
]
},
rootVisible: false,
lines: true
});
return _tree;
}
_______________________________________________
Users mailing list
[email protected]
http://www.geoext.org/cgi-bin/mailman/listinfo/users