Having some trouble navigating the Kendo world and encountering an issue with a grid that is set to a JSON array data source.
An error message stating "JavaScript runtime error: Invalid template" is displayed, specifically referencing null values in the data. Does this mean the data did not bind properly?
Despite seeing the column headers, no rows are showing up in the grid. It should be noted that there are no ID fields in the data as it is derived from a temporary table generated by a SQL view.
A function named populateGrid is used to populate the Kendo grid with data retrieved from a server. However, the current approach seems to result in missing row data while the column headers are rendered correctly.
The error details suggest issues with the template being used for rendering the grid. Here is a snippet of the error:
`Unhandled exception at line 11, column 6788 in
http://--------:51392/WW/js/kendo.web.min.js 0x800a139e - JavaScript
runtime error: Invalid template:'<tr data-uid="#=data.uid#"
role='row'><td role='gridcell'>#=data.Account
Num==null?'':data.Account Num#</td><td
role='gridcell'>#=data.address==null?'':data.address#</td><td
role='gridcell'>#=data.Arb Location==null?'':data.Location#</td><td
role='gridcell'>#=data.WNum==null?'':data.Num#</td><td`
Any assistance or feedback on resolving this issue would be greatly appreciated. Thank you!