我正在尝试将面板添加到选项卡面板的选项卡(如下所示),但我在控制台中收到“布局运行失败”
任何指针或一般如何将组件添加到选项卡,因为示例我在选项卡中看到它只是 html
谢谢。
{
xtype: 'tabpanel',
activeTab: 0,
width: 632,
//height: 300,
items: [
{
title: 'Companies',
layout: 'border',
items: [
{
xtype: 'panel',
region: 'center',
width: 500,
title: 'Tooler',
items: []
},
{
xtype: 'toolbar',
region: 'south',
width: 500,
items: [
'->',
{ text: 'Edit Company', action: 'edit' }
]//toolbar items
}
]
},
{
title: 'Access Group'
},
{
title: 'Roles'
},
{
title: 'Menus'
},
{
title: 'Forms'
}
]
}