1

我在更新剑道 ui 网格时遇到问题。
我创建了这样的网格: http ://demos.kendoui.c​​om/web/grid/editing-custom.html ,但我也添加了更新功能。

我的问题在下一个。

更新网格后,更新请求正常(POST url 200 OK),但之后我在浏览器控制台中收到错误:

TypeError: Distribution is undefined.

分布是下拉列表中的数据类型。

这是我的代码:

dataSource:
...
update: {    
    url: "/Modeling/EditCurrentStates",
    type: "POST"
}
...
schema: {
    model: {
        id: "StateNumber",
        fields: {
            ...
            Distribution: { defaultValue: { Id: 1, Name: "Exponential"}
            ...

columns: [
    ...
    { 
        field: "Distribution", 
        title: "Distribution", 
        editor: distributionDropDownEditor, 
        template: "#=Distribution.Name#" 
    },

    function distributionDropDownEditor(container, options) {
        $('<input data-text-field="Name" data-value-field="Id" data-bind="value:' + options.field + '"/>')
            .appendTo(container)
            .kendoDropDownList({
                autoBind: false,
                dataSource: {
                    type: "json",
                    transport: {
                        read: "/Modeling/GetDistributions"
                    }
                }
            });
    }
4

1 回答 1

1

你没有定义你的数据从哪里到剑道。你需要exe

数据:“数据”

dataSource:
...
update: {    
    url: "/Modeling/EditCurrentStates",
    type: "POST"
}

...
schema: {
    data: "data",
    model: {
        id: "StateNumber",
        fields: {
            ...
            Distribution: { defaultValue: { Id: 1, Name: "Exponential"}
            ...

columns: [
    ...
    { 
        field: "Distribution", 
        title: "Розподіл", 
        editor: distributionDropDownEditor, 
        template: "#=Distribution.Name#" 
    },

function distributionDropDownEditor(container, options) {
    $('<input data-text-field="Name" data-value-field="Id" data-bind="value:' + options.field + '"/>')
        .appendTo(container)
        .kendoDropDownList({
            autoBind: false,
            dataSource: {
                type: "json",
                transport: {
                    read: "/Modeling/GetDistributions"
                }
            }
        });
}
于 2013-01-20T19:34:28.963 回答