0

为什么每次按下菜单(Extjs4.1)中的按钮时都会出现此错误。当我尝试单击下面菜单中的任何按钮时会发生这种情况。

未捕获的类型错误:对象 [对象对象] 没有方法“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',
            }],
        },
    }]
4

0 回答 0