Hi,
In some sample code, namely the Grid's "Binding to remote data" sample code, we can see the following:
$("#grid").kendoGrid({
dataSource: {
type: "odata",
transport: {
read: "http://demos.kendoui.com/service/Northwind.svc/Orders"
},
...
I can't find this "type" property documented anywhere. There is a "dataType" property documented as part of the DataSource's transport's CRUD configuration. Are they related ?
Thank you