I am able to parse and extract the data using KendoUI when JSON is in the form { "data" :[ { }, { }, { } ] }
But I am unable to do the same when JSON is in the form [ { }, { }, { } ]
I am trying with the following code:
var dataSourceSeam = new kendo.data.DataSource({
transport: {
read: {
url: "data/address.json",
dataType: 'json'
}
}
,schema:{
data : "data",
size:"count"
}
});