我使用Ext.PagingToolbar(Sencha JS)并有下一个代码:
bbar : [ {
xtype : 'paging',
store : store,
displayInfo : true,
pageSize : 25,
displayMsg: 'Displaying {0} - {1} of {2}',
prependButtons : true
如果我有两个(或更多)记录,那么结果有下一个视图 - "显示1 - 2 of 3" 我怎么解决它?
商店代理:
store = new Ext.data.GroupingStore({
pageSize: pageSize,
autoDestroy : true,
proxy : new Ext.data.HttpProxy(
{
url : 'delinquent/cas.html',
listeners : {
exception : function(self, type, action, options,
response, arg) {
if (type == 'response') {
App.ui.error("Data load error");
} else if (type == 'remote') {
App.ui.error('Error', response.raw.message);
}
}
}
}),
reader : new Ext.data.JsonReader({
totalProperty : 'results',
root : 'info',
fields : [ 'id', 'createdAt', 'createdBy', 'cName',
'cF', 'region', 'statusId', 'sN', 'dls',
'cS', 'updatedat', 'updatedby' ]
}),
sortInfo : {
field : 'createdAt',
direction : 'DESC'
},
groupField : ''
});