私の店には次のものがあります。制限が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
}
},
と私のグリッド