在Kendo UI网格中更新操作

时间:2015-03-02 14:02:40

标签: kendo-ui kendo-grid

我正在Kendo UI中实现网格,对于更新和删除,我使用的是Kendo UI的弹出模式。我正在努力但无法正确地实现流程,但无法这样做。我想用下面的代码编写自定义弹出窗口。

editable: {
    mode: "popup",
    template: kendo.template($("#editData").html()),
    confirmation: function(dataRow) {
        return 'Are you sure you want to remove the record with Id: ' + dataRow.recId;
    }
},

有了它,它会向我显示我的HTML代码。另外对于自定义删除消息,我写了可编辑标签的确认属性。我的查询是如何捕获更新和删除事件,或在用户进行更新和删除操作时调用我的函数。并希望对我编写代码的操作进行AJAX调用,如下所示

    update: {
        type: "POST",
        dataType: "json",
        url: "${pageContext.request.contextPath}/productSeries/getDataList"
    },
    destroy: {
        type : "POST",
        url : "${pageContext.request.contextPath}/series/retireData",
        dataType : "text",}

但无法将控件带入AJAX调用。请让我知道我在这里做错了什么。

0 个答案:

没有答案