DomHelper 创建新的可折叠面板
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以轻松地解决这样的问题:
这可能不是最干净的,但可行。希望这有帮助。
You can easyly workaround with something like this :
This may not be the cleanest but works. hope this helps.