1

是否可以在嵌套列表中使用列表分页插件?当我直接放置代码时,该应用程序将不再工作。

我的代码:

requires: ['Ext.field.Search','Ext.Toolbar','Ext.plugin.ListPaging'],
    config: {
        store: 'CatalogStore',
        plugins: [
            {
                xclass: "Ext.plugin.ListPaging",
                autoPaging: true
            }
        ],

我的商店:

Ext.define('Catalog_Demo.store.CatalogStore', {
    extend: 'Ext.data.TreeStore',
    requires: ['Catalog_Demo.model.CatalogModel'],
    config :{
        model: 'Catalog_Demo.model.CatalogModel',
        proxy: {
            type: 'ajax',
            url: 'enter code hereosc_demo.php',

            reader:{
                type: 'json',
                rootProperty: 'categories'
                }
            },
        pageSize: 2,
        autoLoad: true,
    }
});

它显示以下错误

未捕获的类型错误:无法调用未定义
ListPaging.js:114的方法“getScroller”

有原因吗?

4

1 回答 1

0

您必须将插件配置放在listConfig您的嵌套列表中。所以你发布的代码片段会变成这样:

requires: ['Ext.field.Search','Ext.Toolbar','Ext.plugin.ListPaging'],
config: {
    store: 'CatalogStore',
    listConfig: {
            plugins: [
            {
                xclass: "Ext.plugin.ListPaging",
                autoPaging: true
            }
        ],       
    }
}
于 2013-05-08T12:14:23.377 回答