Kendo Grid在创建后不会使用新创建的id更新网格

时间:2013-10-04 00:37:36

标签: kendo-ui kendo-grid

我正在尝试构建一个非常简单的Kendo CRUD网格,其中一个表只有两列:ID和Name。我已经使用serverside分页和服务器端过滤配置了网格。

所有内容似乎都按预期运行,但在创建新记录后,网格显示新记录但没有ID字段。在创建时,请求的ID为null,但我在创建后发送id和完整对象的值。在示例网格中,网格使用新值进行更新。我需要更改/添加什么来确保新创建的记录的ID也显示在Grid中?

以下是JSP:

        <script>


        $(function() {
            var dataSource =  new kendo.data.DataSource({
                transport: {
                    read: {
                        url:"http://localhost:8181/baseweb/countrylist",
                        dataType: "jsonp"
                    },
                    update: {
                        url: "http://localhost:8181/baseweb/countryupdate",
                        dataType: "jsonp"
                    },    
                    destroy: {
                        url: "http://localhost:8181/baseweb/countrydelete",
                        dataType: "jsonp"
                    }, 
                    create: {
                        url: "http://localhost:8181/baseweb/countrycreate",
                        dataType: "jsonp"
                    },                        
                    parameterMap: function(data, operation) {
                        if (operation !== "read" && data.models) {
                            return {grid_options: kendo.stringify(data.models)};
                        }
                        return {grid_options: kendo.stringify(data)};
                    }                       
                },
                serverPaging: true,
                serverFiltering: true,
                pageSize: 10,
                schema: {
                    data: "data",        
                    total: "total",                     
                    model: {
                        id: "id",
                        fields: {
                            id: { editable: false, nullable: true },
                            name: { validation: { required: true } }                                
                        }

                    }
                }                   
        });

            $("#grid").kendoGrid({
                dataSource: dataSource,
                pageable: true,
                filterable: true,
                height: 400,  
                toolbar: ["create"],                    
                columns: [
                          { field: "id", title:"Identification"}, 
                          { field: "name", title:"Country Name" },
                          { command: ["edit", "destroy"], title: "&nbsp;", width: "160px" }
                          ],
                editable: "popup"           
            });
        });

    </script> 

参数在创建时发送到服务器: _ 1380846899054 回调jQuery19108827040256333442_1380846899052 grid_options {“id”:null,“name”:“testing”}

作为响应从服务器发回的参数: jQuery19108827040256333442_1380846899052([{“id”:“4028828f4180d64a014180e3bda20002”,“name”:“testing”}])

我希望服务器发回的ID应该显示在网格中。我搜索了这个论坛,Kendo文档和谷歌的答案,但我无法找到解决方案。

我错过了什么?


使用解决方案进行更新:

Jack's answer提供了找到解决方案的线索。我犯了两个错误:

一个。 Kendo Grid中的回调似乎期望数据返回“data:”属性。我没有在我的回复中将结果集命名为“data:”。 湾回调还需要data:属性中的JSONArray对象。因为我只创建了一个对象,所以我发送了一个JSONObject。

在我将响应更改为include data:attribute和JSONArray后,它完美地运行。 来自客户端的请求参数如下所示:

_   1386350196768
callback    jQuery19101285024500179227_1386350196765
grid_options    {"id":null,"name":"Ghana"}

编辑后的回复如下:

jQuery19101285024500179227_1386350196765( {"data":[{"id":"2c9323ca42c8df630142c944450b0002","name":"Ghana"}]})

希望它可以帮助其他人,因为官方文档中没有明确记录。

2 个答案:

答案 0 :(得分:12)

有一种很好的清洁方式......

如果您的网格是在脚本块中创建的:

dataSource: {
    transport: {
        read: {
            url: "..."
        },
        create: {
            url: "...",
            type: "POST",
            complete: function(e) {
                $("#grid").data("kendoGrid").dataSource.read(); 
        }
    },
}...

HTML中的OR

@(Html.Kendo().Grid<ViewModel>()
  .Name("grid")
  .DataSource(dataSource => dataSource
      .Ajax()
      .PageSize(10)
      .Model(model =>
        {
            model.Id(i => i.Cde);
            model.Field(i => i.Description).Editable(true);
        })
      .Read(read => read.Action("EditingInline_Read", "UserGroups"))
      .Update(update => update.Action("EditingInline_Update", "UserGroups")).Read("EditingInline_Read", "UserGroups")
      .Destroy(delete => delete.Action("EditingInline_Delete", "UserGroups"))
      .Create(create => create.Action("EditingInline_Create", "UserGroups")).Read("EditingInline_Read", "UserGroups")
   )
  .Columns(columns =>
  {
      columns.Bound(s => s.Decription);
      columns.Bound(s => s.enabled);
      columns.Command(command => { command.Edit(); command.Destroy(); }).Width(200);
  })
  .Pageable()
  .Sortable()
  .Selectable(selectable => selectable
        .Mode(GridSelectionMode.Single))
  .ToolBar(toolbar => toolbar.Create()))

查看CRUD调用,更具体,更新和创建。

答案 1 :(得分:4)

我遇到了同样的问题,并认为我可能找到了答案。如果在模式中定义了包含结果的对象,则必须在同一对象中返回创建的链接的结果。例如:

schema: {
         data: "data",        
         total: "total",  .... 
 }

示例MVC方法:

public JsonResult CreateNewRow(RowModel rowModel)
{
    // rowModel.id will be defaulted to 0

    // save row to server and get new id back
    var newId = SaveRowToServer(rowModel);

    // set new id to model
    rowModel.id = newId;

    return Json(new {data= new[] {rowModel}});
}