Im trying this in jsfidler, but it doesnt work...
$("#grid").kendoGrid({
dataSource: {
type: "odata",
transport: {
read: {
//using jsfiddle echo service to simulate JSON endpoint
url: "http://www.letsdokaraoke.com/api/Artists?format=json",
dataType: "json"
}
},
schema: {
data: 'artists'
}
},
height: 250,
columns: [
{
field: "ID"},
{
field: "Name"}
]
});
Any Ideas?
$("#grid").kendoGrid({
dataSource: {
type: "odata",
transport: {
read: {
//using jsfiddle echo service to simulate JSON endpoint
url: "http://www.letsdokaraoke.com/api/Artists?format=json",
dataType: "json"
}
},
schema: {
data: 'artists'
}
},
height: 250,
columns: [
{
field: "ID"},
{
field: "Name"}
]
});
Any Ideas?