Hello,
Is it possible to have a DataSource read and combine from multiple json files?
Something like:
var
ds1 =
new
kendo.data.DataSource({
transport: {
read: [
{ url:
function
() {
return
"data/Monday.json"
; }, dataType:
"json"
},
{ url:
function
() {
return
"data/Tuesday.json"
; }, dataType:
"json"
}
]
},
If not, is there an alternative that allows combining DataSources together?