I want to update my kendogrid data using that:
$('#myGrid').data('kendoGrid').dataSource.data(myArrayVariable)
I always get that error: "object is not a function"
I traced the code, and I had to change the line 55564 in src/kendo.all.js (version 2014.3.1209)
current = $(that.current()),
->
current = that.current
Not sure if that fix works for all possible case, but it solved my issue.
$('#myGrid').data('kendoGrid').dataSource.data(myArrayVariable)
I always get that error: "object is not a function"
I traced the code, and I had to change the line 55564 in src/kendo.all.js (version 2014.3.1209)
current = $(that.current()),
->
current = that.current
Not sure if that fix works for all possible case, but it solved my issue.