メニューのボタンを押すたびにこのエラーが発生するのはなぜですか(Extjs4.1)。下のメニューの任意のボタンをクリックしようとすると発生します。
キャッチされていない TypeError: オブジェクト [オブジェクト オブジェクト] にメソッド 'getPageBox' がありません
コードは次のとおりです。
dockedItems: [{
xtype: 'toolbar',
items: [{
text: _('Add'),
iconCls: 'entry_add',
action: 'add',
},{
text: _('Search')+':',
},{
xtype: 'textfield',
hideLabel: true,
width: 160,
name: 'searchfield',
enableKeyEvents: true,
},{
xtype: 'tbfill',
},{
text: _('Delete'),
iconCls: 'entry_delete',
action: 'delete',
},{
text: _('Refresh'),
iconCls: 'entry_refresh',
action: 'refresh',
},{
iconCls: 'entry_refresh',
text: 'Actions',
menu: {
xtype: 'menu',
floating: true,
items: [{
text: _('Create Order'),
iconCls: 'entry_delete',
action: 'createorder',
},{
text: _('Stocktalking'),
iconCls: 'entry_delete',
action: 'stocktalking',
},{
text: _('Export'),
iconCls: 'entry_refresh',
action: 'export',
},{
text: _('Import'),
iconCls: 'entry_refresh',
action: 'import',
}],
},
}]