如何在 EXTJS4 中使用 Ext.define

发布于 2024-12-03 22:53:45 字数 589 浏览 1 评论 0原文

我收到错误: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玉环 2024-12-10 22:53:46

我已经在下面的链接中解释了如何在 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文