Having issues feeding my kendo grid with my web api. The call generates this:
/odata?$callback=jQuery19101822532636579126_1364840583015&%24inlinecount=allpages&%24format=json&%24top=20
but the response is:
The query parameter '$callback' is not supported.
Anyone has experience with this scenario?
dataSource: {
type: "odata",
transport: {
read: "odata/mydata"
},
I managed to workaround this by setting both OData and JSON datatypes at different levels of the configuration
dataSource: {
type: "odata",
transport: {
read: {
url: "/odata/FXDatas",
dataType: "json"
}
}
},
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With