我正在按照以下链接中的代码来查看Ext.grid.Panel上的数据,但没有成功。无需分页即可在面板中完全呈现数据。显然,分页工具栏没有要显示的数据,但它已正确配置到具有数据的商店,并且它作为网格项挂起。
我从下面的例子中复制了商店和网格的确切配置,但没有任何反应。为什么数据没有被分页?
http://jsfiddle.net/jardalu/TE4ah/
这是我的商店,它链接到网格和分页工具栏:
constructor: function(cfg) {
var me = this;
cfg = cfg || {};
me.callParent([Ext.apply({
pageSize: 50,
remoteSort: true,
storeId: 'Users',
autoLoad: false,
model: 'AICWeb.model.User',
sortOnLoad: false,
proxy: {
type: 'ajax',
type: 'localstorage',
simpleSortMode: true,
reader: {
type: 'xml'
}
},
sorters: {
property: 'email'
}
}, cfg)]);
}
答案 0 :(得分:0)
如果您使用localstorage
,则需要实施PagingMemoryProxy。这应该是代理配置中的唯一类型,并启用分页配置:
proxy: {
type: 'pagingmemory'
enablePaging: true,
...
}