我正在尝试在我的 livesearchgridpanel 上设置一个分页工具栏。我通过 Httpproxy 获取数据,所以这是我的商店:
tempStore = new Ext.data.Store
({
groupField : default_groupby_s,
model : 'reportWorkspace',
allowFunctions : true,
autoSync : false,
pageSize : 20,
autoLoad : true,
remoteSort : false,
proxy : new Ext.data.HttpProxy
({
url : url_s,
actionMethods :
{
read : 'POST'
},
reader :
{
type : 'json',
root : 'workspace_report',
successProperty : 'success'
}
})
});
return tempStore ;
}
这是我的分页工具栏,它将包含在我的 LivesearchgridPanel 中:
{
xtype: 'pagingtoolbar',
store: tempStore ,
dock: 'bottom',
pageSize:20,
displayInfo: true
}
问题是分页工具栏正确显示页面,但在我的网格的情况下,它同时显示所有数据(在每一页中)。是否可以在自动加载参数中不设置任何起点或限制的情况下做到这一点?我只想下载我所有的数据,然后用页面正确显示
有什么建议吗?