我的商店里有以下物品。请注意,限制设置为 10。我可以在 firebug 上看到返回了 10 条记录。我的问题是我的网格分页似乎没有正确的“页面”值。
即我总共有 11 条记录(应该是 2 页)
proxy:{
type:'ajax',
api:{
read: '/CutterHistory/Read/',
update:'/CutterHistory/Update',
create:'/CutterHistory/Update',
destroy:'/CutterHistory/Remove'
},
reader:{
type:'json',
root:'CutterHistories',
successProperty:'success',
totalProperty:'Total'
},
writer:{
type:'json',
allowSingle:true
},
simpleSortMode: true,
extraParams : {
'sort' : sortBy,
'search' : search,
'limit' : 10,
'destroyed' : destroyed
}
},
和我的网格