ExtJS -如何在ExtJS 6.2中添加网格分页工具栏?

dgiusagp  于 2022-11-04  发布在  其他
关注(0)|答案(1)|浏览(162)

在ExtJS 6.2 modern中,如何添加网格分页?
在6.2的文档中,它没有给予详细信息:https://docs.sencha.com/extjs/6.2.0/modern/Ext.grid.plugin.PagingToolbar.html
以下是我尝试的最新ExtJS文档:

Ext.define('MyGrid', {
   extend       : 'Ext.grid.Grid',
   store        : 'mystore',
   plugins: {
      pagingtoolbar: true
   },
});

上面给出了ExtJS中的一个错误:Error: [Ext.create] Invalid class name or alias 'null' specified, must be a non-empty string .
请看提琴:https://fiddle.sencha.com/#view/editor&fiddle/3gmo

qmb5sa22

qmb5sa221#

查出来应该是:

plugins: [{
        type: 'pagingtoolbar'
    }],

相关问题