gpt4 book ai didi

kendo-ui - 语法错误 : Unexpected token ILLEGAL

转载 作者:行者123 更新时间:2023-12-04 15:45:44 25 4
gpt4 key购买 nike

在我的项目中,我想在通过单击“按钮”清除剑道网格的同时显示弹出窗口,但我收到 SyntaxError: Unexpected token ILLEGAL error occurred in browser debug
这是我的代码:

function Filter() {
$("#loading-msg").data("kendoWindow").center().open();
$("form.k-filter-menu button[type='reset']").trigger("click");
$("#loading-msg").data("kendoWindow").center().close();
}

我错在哪里?为什么我收到这个错误?

My fiddle.

最佳答案

而不是在发出过滤器后立即执行关闭。我的建议是关闭 DataSource requestEnd 事件的窗口。

即:清除过滤器:

function clearFiter() {
$("#loading-msg").data("kendoWindow").center().open();
$("#grid").data("kendoGrid").dataSource.filter([]);
}

和数据源:
dataSource: {

type: "odata",
transport: {
read: "http://demos.kendoui.com/service/Northwind.svc/Orders"
},
schema: {
model: {
fields: {
OrderID: { type: "number" },
Freight: { type: "number" },
ShipName: { type: "string" },
OrderDate: { type: "date" },
ShipCity: { type: "string" }
}
}
},
pageSize: 10,
serverPaging: true,
serverFiltering: true,
serverSorting: true,
requestEnd : function () {
$("#loading-msg").data("kendoWindow").close();
}
},

您在此处修改的代码: http://jsfiddle.net/OnaBai/MG89G/595/

关于kendo-ui - 语法错误 : Unexpected token ILLEGAL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15564083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com