タブパネルのタブにパネルを追加しようとしていますが(以下のように)、コンソールに「レイアウトの実行に失敗しました」と表示されます
タブにコンポーネントを追加するためのポインタまたは一般的な方法
ありがとう。
{
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'
}
]
}