Hi
I need for an test to modify original
dataSource: {
type: "odata",
transport: {
read: "http://demos.kendoui.com/service/Northwind.svc/Employees"
},
pageSize: 6,
serverPaging: true,
serverSorting: true
},
By an local file with changed data
I have tried without succes two change
First
dataSource: {
transport: {
type: "json",
read: "http://demos.kendoui.com/service/Northwind.svc/Employees?$format=json"
},
second test
dataSource: {
transport: {
type: "json",
read: "Employees.json"
},
Where is my mistake ?
Regards