Я определил класс, который представляет древовидную структуру
GeographicalUnits = Ext.extend(Ext.tree.TreePanel, {
title: 'Регион / Город',
//rootVisible: false,
initComponent: function () {
this.root = {
text: 'Tree Node',
expanded: true
};
this.loader = {
url: 'API/GeographicalUnits/GetNodes'
};
GeographicalUnits.superclass.initComponent.call(this);
}
});
Я создаю экземпляр следующим образом:
Ext.getCmp('MainTabs').openTab(new GeographicalUnits({
id: 'GeographicalUnitsCatalog'
}));
ответ сервера:
[{"text":"geo1","children":[{"text":"sub1","leaf":true},{"text":"sub2","leaf":true}]}]
это работает в Chrome, Firefox и Opera, но не работает в IE 8. почему?