How do you specify where the data is in the response? In js I would specify that the total property is the "count" property and the data is in "data". I don't see how to do this in the MVC extensions.
schema: {
total: "count",
data: "data",
model: {
id: "Id",
fields: {
Id: { editable: false, type: "number" },
StartDate: { type: "date" },
EndDate: { type: "date" }
}
}
}
schema: {
total: "count",
data: "data",
model: {
id: "Id",
fields: {
Id: { editable: false, type: "number" },
StartDate: { type: "date" },
EndDate: { type: "date" }
}
}
}