Below is my proxy for my store… my question is what is the totalProperty? I have 100 records that I am reading. but I want to display 10 records per page. Should the totalProperty be 10 or 100 on my json?
proxy: {
type: 'ajax',
url: 'GridView/writeRecord',
reader: {
type: 'json',
totalProperty: "count",
root: "myTable"
}
},
and this is my JSON
{
"count": 100,
"myTable": [
{
This is covered in the docs
So it should be 100.