Hello,
The grid loads remote data at setup without any problems. However, in a button click event, I set the same url as source, like this:
1.$("#budgetGrid").data("kendoGrid").setDataSource({2. transport: {3. read: loadURL,4. },5.});
And I get this error:
1.kendo.all.js:45851 Uncaught TypeError: e.fetch is not a function(…)2.setDataSource @ kendo.all.js:458513.click @ Default.aspx?uid=6674:2134.trigger @ kendo.all.js:1245._click @ kendo.all.js:260176.d @ jquery.min.js:27.dispatch @ jquery.min.js:38.r.handle @ jquery.min.js:3I've compared the output of the remote method and it's the same.
Thank you for any pointer.