I am working with KendoUI grid. I want to assign an array as data-source to the grid instead of using array of objects.
dataSource: [
[ "User One", 3 ],
[ "User Two", 3 ]
]
instead of using
dataSource: [
{ name: "User One", age: 3 },
{ name: "User Two", age: 3 }
]
Is this possible?