我需要在 tabpanel 的第二个选项卡中动态添加 tbar(不想在 tbar 中动态添加项目,但需要根据某些条件添加 tbar,否则应该添加 bot),下面是我的代码:
var wind = Ext.create("Ext.Window", {
modal: true,
scrollable: true,
items: [
{
margin: '0 0 0 10',
xtype: 'tabpanel',
reference: "MainTab",
plain: true,
resizeTabs: true,
flex: 1,
border: 3,
items: [
{
title: "Messages",
rootTab: true,
items: [{
// item
}] }, {
title: "Alarms",
items: [{
//item,
}],
tbar: // need to add this tbar dynamically
}]
我已经尝试使用 dockedItems 使用 initComponent 但对我不起作用。