如何在 EXTJS4 中使用 Ext.define
我收到错误:dockedItems 为 null 或不是对象。 我想知道当我定义一个定义 EXTJS4 类的类时应该做什么。
Ext.define("com.yx.MyPanel", {
extend: "Ext.panel.Panel",
config: {
title: "Clannad",
width: 100,
height: 100
},
constructor: function(config) {
this.initConfig(config);
this.callParent([config]);
}
});
Ext.create("com.yx.MyPanel", {
renderTo: Ext.getBody()
});
I get a error:dockedItems is null or not a object.
I want to know what I should do when I define a class that define an EXTJS4 class.
Ext.define("com.yx.MyPanel", {
extend: "Ext.panel.Panel",
config: {
title: "Clannad",
width: 100,
height: 100
},
constructor: function(config) {
this.initConfig(config);
this.callParent([config]);
}
});
Ext.create("com.yx.MyPanel", {
renderTo: Ext.getBody()
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经在下面的链接中解释了如何在 ExtJS4 中使用 Ext.define。
如何在 ExtJS 4 中使用 Ext.define?
I have explained how to use Ext.define in ExtJS4 in bellowed link.
How to use Ext.define in ExtJS 4?