无法从Kendo DataSource更新数据

时间:2014-08-07 13:46:56

标签: listview kendo-ui kendo-datasource

我有一个Kendo ListView。这是使用来自Kendo DataSource的数据填充的。

这是我的ListView:

    $("#lvCodeLeft").kendoListView({
        dataSource: dsCodeLeft,
        template: "<div><b>#:code#</b> #:heading#</div>",
        selectable: "multiple"
    });

这是我的DataSource:

    var dsCodeLeft = new kendo.data.DataSource({
        batch: true,
        transport: {
            read: {
                cache: false,
                url: "http://localhost:9995/server/Service.svc/GetUnasignedCodes",
                dataType: "jsonp"
            },
            update: {
                url: "http://localhost:9995/server/Service.svc/UpdateCodes",
                dataType: "json",
                contentType: "application/json; charset=utf-8",
                type: "POST"
            },
            parameterMap: function(data, type) {
                if (type == "update") {
                    return { models: kendo.stringify(data.models) };
                }
            }
        },
        schema: { model: { id: "id" }}
    });

我有一个调用javascript函数的普通按钮

<input id="btnAssign" type="button" value=">>" onclick="assignCode()">

这是assignCode()函数(第一个版本):

    function assignCode() {
        dsCodeLeft.fetch(function () {
            this.read();

            var atc = this.at(0);
            this.at(0).set("primaryUser", 2);
            this.sync();
        });
    };

我也尝试过(第二版):

    function assignCode() {
        dsCodeLeft.fetch(function () {
            this.read();

            this.pushUpdate({ id: "61078", primaryUser: 2 }); //61078 is the first record
            this.at(0).dirty = true;
            this.sync();
        });
    };

但不管我做什么,发送到webservice的参数为null。 Web服务期待Code [],其中Code是:

public partial class Code
{
    public string id { get; set; }
    public string code { get; set; }
    public string heading { get; set; }
    public Nullable<System.DateTime> deleteDate { get; set; }
    public string comment { get; set; }
    public Nullable<decimal> primaryUser { get; set; }
}

我认为我的问题在于DataSource的parameterMap,但我无法弄明白。

0 个答案:

没有答案