Ext.tree.TreeLoader 不是构造函数错误
我是 Extjs4 的新手。当我使用 loader: new Ext.tree.TreeLoader()
时,Extjs4 加载程序无法工作 。它显示类似“Ext.tree.TreeLoader 不是构造函数”的错误。它在 extjs 旧版本中运行良好。 请帮我。提前致谢
I'm new to Extjs4.In Extjs4 loader not working when i use loader: new Ext.tree.TreeLoader()
. it showing the error like "Ext.tree.TreeLoader is not a constructor". it works fine in extjs older versions.
Please help me. Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 extjs 4 中,不再支持组件 Ext.tree.TreeLoader,对于树面板的加载器配置,现在您可以使用 Ext.ComponentLoader,但我建议您使用 Ext.data.TreeStore,您可以配置它来加载类似的数据到 Ext.tree.TreeLoader .. 文档使用 extjs 4 api .. http://dev.sencha.com/deploy /ext-4.0.2a/docs/#/api/Ext.data.TreeStore
您也可以检查他们的一些示例:
http://dev.sencha.com/deploy/ext- 4.0.2a/examples/#sample-6
http://dev.sencha.com/deploy/ext-4.0.2a/examples/tree/check-tree.js
In extjs 4 the component Ext.tree.TreeLoader ist not supported anymore, For the loader config of a treepanel now you can use Ext.ComponentLoader but i would suggest you rather use Ext.data.TreeStore which you can configure to load your data similar to Ext.tree.TreeLoader .. for documentation use the extjs 4 api .. http://dev.sencha.com/deploy/ext-4.0.2a/docs/#/api/Ext.data.TreeStore
also you can check some examples they have :
http://dev.sencha.com/deploy/ext-4.0.2a/examples/#sample-6
http://dev.sencha.com/deploy/ext-4.0.2a/examples/tree/check-tree.js