我试图在我的kendoui网格中使用jquery ajax调用来进行数据源更新。 代码示例(来自docs):
update: function(options) {
// make JSONP request to http://demos.telerik.com/kendo-ui/service/products/update
jQuery.ajax({
url: AjaxSave,
dataType: "json", // "jsonp" is required for cross-domain requests; use "json" for same-domain requests
success: function(result) {
options.success(result);
},
error: function(result) {
options.error(result);
}
});
}

但是在更新点击后我收到以下错误:
Error: Only json dataType can be used for update operation.
...o](n,e[o]):n[o]=e[o]}else{if("json"!==l)throw Error("Only json
dataType can be u...
我做错了什么?
答案 0 :(得分:0)
从语法上讲,它看似正确。我知道在安装的jQuery版本和使用的Kendo版本之间存在不兼容的情况下会发生这种情况。
您可能需要交叉检查您的jQuery / Kendo版本兼容性,并在必要时更新/回滚。