1

ネストされたリストで List Paging Plugin を使用することは可能ですか? コードを直接配置すると、アプリが動作しなくなります。

私のコード:

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,
    }
});

次のエラーが表示されます


キャッチされていない TypeError: 未定義のListPaging.js:114のメソッド 'getScroller' を呼び出せません

理由はありますか?

4

1 に答える 1

0

プラグインlistConfig構成をnestedListに配置する必要があります。したがって、投稿したコード スニペットは次のようになります。

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 に答える