1

我有一个简单的剑道网格,我正在尝试将编辑器模板与之关联。外键是发送给客户端的唯一属性,因此我无法为编辑器模板提供外键属性的模型类型。

剑道网格的配置

    protected override void Configure(GridBuilder<AreaModel> grid)
    {
        grid.Columns(c =>
        {
            c.Bound(a => a.Description);
            c.Bound(p => p.CompanyId).ClientTemplate("#= CompanyDescription#").EditorTemplateName("DropDown/CompanyId").Width(160);
            c.Command(command => command.Edit()).Width(200);
            c.Command(command => command.Destroy()).Width(110);
        });
        grid.ToolBar(toolbar => toolbar.Create().Text("New Area"));
        grid.Editable(edit => edit.Mode(GridEditMode.InLine));
        grid.DataSource(d => d
            .Ajax()
            .Model(m => m.Id(p => p.Id))
            .Create("GridInsert", "Area")
            .Update("GridUpdate", "Area")
            .Destroy("GridDelete", "Area"));
    }
}

编辑器模板也很简单。一切正常,只是该值未发布到服务器。

@using Kendo.Mvc.UI
@(Html.Kendo().DropDownList()
    .Name("CompanyId")
    .DataValueField("Id")
    .DataTextField("Name")
    .DataSource(d => d.Read("CompaniesData", "Company")))

有人可以帮我解决这个问题吗?

4

1 回答 1

0

modelview应该维护下拉列表的选定值的属性名称必须是 editorTemplate 中下拉列表的名称,并且类型datavaluefield和属性应该相同。

于 2013-09-20T11:04:45.020 回答