Uncaught Object Error Kendo Grid Read Issue
I'm new with Kendo. I was trying to create a Kendo grid with data from a remote link My Code: var dataSource = new kendo.data.DataSource({ transport: { read: {
Solution 1:
The problems is that fields (columns) cannot be numbers. This is because internally, if you have a column called 1
, it generates code as data.1
which is not valid. Change your columns name to a valid JavaScript field name and it will work.
Post a Comment for "Uncaught Object Error Kendo Grid Read Issue"