我的 ViewPort 中有一个 TabPanel,有 4 个选项卡;是否可以保留选项卡本身(要点击的“按钮”),但如果不可见则删除/创建内容/dom?
我正在寻找类似 tab.removeContent() 和 tab.createContent() 的东西,我猜......
我试过了:
activeitemchange: function(component, value, oldValue, eOpts) {
Ext.Viewport.remove(oldValue, true);
}
这似乎什么也没做......
这将删除所有内容:
activeitemchange: function(component, value, oldValue, eOpts) {
Ext.Viewport.remove(Ext.Viewport.getActiveItem(), true);
}
我得到了删除部分的工作:
oldValue.removeInnerAt(0);
但与之相反的是什么,即如何设置标签的内容?
var myContent = Ext.create('MyApp.view.MyView');
// and now?