0

我有一个剑道列表视图。这是用来自 Kendo 数据源的数据填充的。

这是我的列表视图:

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

这是我的数据源:

    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();
        });
    };

但不管我做什么,发送到网络服务的参数是空的。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 上,但我想不通。

4

0 回答 0