ネストされたリストで 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' を呼び出せません
理由はありますか?