我使用以下内容将内容添加到我的视图中:
Ext.getCmp('mainpage').add({items:thecarousel});
thecarousel是一个代表我的轮播及其内容的数组。这一切都按我的要求工作。这是它的代码:
var thecarousel = {
xtype: 'carousel',
width: '100%',
height: '100%',
itemId: 'thecarousel',
id: 'carousel',
defaults: {
styleHtmlContent:true,
},
items: allcharts,
}
Ext.getCmp('mainpage').add({items:thecarousel});
Ext.Viewport.setMasked(false);// remove loading message`
我正在寻找的是一种与此相反并从视图中移除轮播的方法。
我没有成功尝试以下方法:
- Ext.getCmp('mainpage').remove('carousel',false)
- Ext.getCmp('mainpage').remove({items:'carousel'})
- Ext.getCmp('mainpage').remove('carousel',true)