无法使TreePanel在ExtJS 4.1上运行

时间:2013-11-13 14:16:57

标签: extjs4.1

我正在使用ExtJS 3.2并使树面板工作我已经从下面的链接参考并且能够完成这项工作。

https://www.assembla.com/code/yamt/subversion/nodes/trunk/web/js/extjs/examples/ux/XmlTreeLoader.js?rev=9

现在我必须在ExtJS 4.1中迁移该代码,我为此代码设置了错误,因为Ext.tree.TreeLoader不在那里工作。那么,在ExtJS 4.1中使用的东西在同一代码中的最小变化是什么。

1 个答案:

答案 0 :(得分:0)

请尝试以下代码。此代码来自Sencha API。

var store = Ext.create('Ext.data.TreeStore',{     根: {         扩展:是的,         孩子:[             {text:“detention”,leaf:true},             {text:“homework”,扩展:true,孩子:[                 {text:“book report”,leaf:true},                 {text:“algebra”,leaf:true}             ]},             {text:“购买彩票”,leaf:true}         ]     } });

Ext.create('Ext.tree.Panel',{     标题:'简单的树',     宽度:200,     身高:150,     商店:商店,     rootVisible:false,     renderTo:Ext.getBody() });

请参阅API以获取更多详细信息。