我有以下 Sencha App 嵌套列表,其中包含一个工具栏按钮。
每当我单击任何列表项时,我都需要删除下面列表中显示“标签栏”的按钮。如您所见,按钮仍然存在,我需要将其删除。
这是我的视图代码
煎茶查看文件夹
主.js
Ext.define('firstApp.view.Main', {
extend : 'Ext.Container',
xtype : 'main',
requires: [
'Ext.TitleBar',
'Ext.Button',
'firstApp.model.item',
'firstApp.store.nList',
'Ext.dataview.NestedList',
'Ext.data.TreeStore'
//'Ext.ToolBar'
] ,
config : {
fullscreen : true,
layout : 'fit',
items : [{
xtype : 'nestedlist',
title: 'List View',
displayField : 'text',
store : 'nList',
//toolbar:{
toolbar:{
items :[
{
xtype : 'spacer'
},
{
xtype : "button",
text : 'Tab View',
align: 'right',
ui : "action",
handler: function(){
Ext.Viewport.animateActiveItem((
Ext.create('firstApp.view.view2')),
{type: 'slide', direction:'left'}).show();
}
}
]
}
}
]
}
});
我应该怎么做?请帮帮我