0

我对 kendouis 的列表视图有疑问,如果我编辑一行,则另一行将从附加的数据源中删除。当我编辑第一行时这很好用,但是当我编辑另一行时,第一行被删除。

我注意到在编辑第一行列表视图的编辑函数时首先调用但是当我编辑第二行数据绑定时,数据绑定然后编辑被调用。

这是代码:

var dataSource = new kendo.data.DataSource({

  transport: {
     read: function (options) {    
     options.success(lst);
  },
  update: function (options) {
      oThis.httpService.Post('api/DynamicPricing/UpdateDynamicItem', lst)
                            .success(function (data, status) {    
                                options.success(data);
                            });    
                    },
                schema: {
                    model: {
                        id: "Id",
                        fields: {
                            Name: { type: "string" },
                            CategoryF: { type: "string" },
                            DirectCost: { type: "number" },
                            IndirectCost: { type: "number" },
                            StrategyType: { type: "string" },
                            Value: { type: "string" },
                            OverridePrice: { type: "number" },
                            Current: { type: "string" }
                        }
                    }
                }
            });

            list = $('#listcontent').kendoListView({
                template: kendo.template('<table cellpadding="3px" class="gridDynamicPricingContent"><tr> \
                                            <td width="100px">#:Name#</td> \
                                            <td width="100px">#:CategoryF#</td> \
                                            <td width="100px" align="right">#:DirectCostF#</td> \
                                            <td width="100px" align="right">#:IndirectCostF#</td> \
                                            <td width="100px">#:StrategyType#</td> \
                                            <td width="50px">#:Value#</td> \
                                            <td width="100px" style="text-align:right; padding-right:5px;" >#:OverridePriceF#</td> \
                                            <td width="100px">#:Current#</td > \
                                            <td width="100px"><a class="k-button  k-edit-button" href = "\\#"><span class="k-icon k-edit"></span></a></td>\
                                         </tr></table>'),
                editTemplate: kendo.template('<table class="gridDynamicPricingContent k-state-selected"><tr> \
                                            <td width="100px">#:Name#</td> \
                                            <td width="100px">#:CategoryF#</td> \
                                            <td width="100px" align="right">#if(DynamicPricingType==5){# #:data.DirectCost# #}else{#<input type="number" style="width:60px;" class="k-textbox" data-bind="value:DirectCost" name="DirectCost" />#}#</td> \
                                            <td width="100px" align="right">#:IndirectCost#</td> \
                                            <td width="100px">#:StrategyType#</td> \
                                            <td width="50px">#:Value#</td> \
                                            <td width="100px" style="text-align:right; padding-right:5px;">#if(DynamicPricingType==4 || DynamicPricingType==5){#<input type="number" class="k-textbox" style="width:60px;" data-bind="value:OverridePrice" name="OverridePrice" />#}else{# #:data.OverridePrice# #}#</td> \
                                            <td width="100px">#:Current#</td > \
                                            <td width="100px"><a class="k-button k-button-icontext k-update-button" href="\\#"><span class="k-icon k-update"></span></a></td> \
                                         </tr></table>'),
                dataSource: dataSource,
                selectable: true,
                dataBound: function () {
                    $('#listcontent').prepend(header);
                }    
            });//.data("kendoListView");
4

1 回答 1

0

我认为你的主要问题是你有你的schema内心transportdataSource.transport.schema但它应该是dataSource.schema。所以 DataSource 看不到您指定的 schema.model。没有模型,它不知道Id字段是什么,没有它,它可能想在编辑时创建新记录,而不是更新它们。


另一个可能的问题可能是您已schema.model.id设置为Id但您的字段列表中没有该字段schema.model.fields。我会将 Id 添加到字段中。


另一个问题是 Kendo DataSource 期望服务器返回具有匹配 ID 的 1 个更新的项目,而不是整个项目列表。如果您不能将服务器更改为仅返回 1 个项目,那么您可以将transport.update函数中的逻辑更改为仅options.success()使用包含 1 个更新项目的数组进行调用。


您的模板也使用DirectCostFIndirectCostFDynamicPricingType哪些不在您的schmea.model.fields.


我无法重现您的服务器请求,但我在这里制作了一个使用本地数据的 jsFiddle:http: //jsfiddle.net/rally25rs/Lo41dzwp/1/

于 2014-11-10T13:12:53.327 回答