DomHelper 创建新的可折叠面板

发布于 2024-10-26 09:30:08 字数 636 浏览 3 评论 0原文

我是 ExtJs 的新手,我正在尝试创建一个可折叠面板,并希望将其插入到 Dom 中。我的做法如下:

this.foo_holder = Ext.DomHelper.append(document.body, [{id : 'testdiv'}]);

       var fooPanel = {
          xtype         : 'panel',
          height        : 100,
          title         : 'fooPanel',
          titleCollapse : true,
          collapsed     : true,
          collapsible   : true,
          html          : 'Blah Blah'
        };

        Ext.DomHelper.append(this.foo_holder, fooPanel);

但是,它只是在插入面板时显示 html。我没有看到任何标题栏或标题或任何可折叠功能。 当我在 dom 渲染之前创建相同的面板时,它会正确显示。但我需要稍后添加/删除面板。

有人可以帮忙吗?

此外,任何有关如何动态删除组件的输入都将非常有用!

I'm new to ExtJs and I'm trying to create a collapsible panel and would like to insert it into the Dom. I'm doing it as follows:

this.foo_holder = Ext.DomHelper.append(document.body, [{id : 'testdiv'}]);

       var fooPanel = {
          xtype         : 'panel',
          height        : 100,
          title         : 'fooPanel',
          titleCollapse : true,
          collapsed     : true,
          collapsible   : true,
          html          : 'Blah Blah'
        };

        Ext.DomHelper.append(this.foo_holder, fooPanel);

However, it just shows up the html when the panel is inserted. I don't see any title bar or title or any collapsible functionality.
When I create the same panel before the dom is rendered, it shows up properly. But I need to add/remove panels later on.

Can anyone help ?

Also, Any input on how to remove the component dynamically would be extremely useful !

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

飘逸的'云 2024-11-02 09:30:08

您可以轻松地解决这样的问题:

var d = Ext.DomHelper.append(document.body, '<div>' );
Ext.ComponentMgr.create(fooPanel).render(d);

这可能不是最干净的,但可行。希望这有帮助。

You can easyly workaround with something like this :

var d = Ext.DomHelper.append(document.body, '<div>' );
Ext.ComponentMgr.create(fooPanel).render(d);

This may not be the cleanest but works. hope this helps.

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