使用Guid数据类型时,KendUI Grid外键字段为空

时间:2015-05-28 23:34:12

标签: kendo-ui telerik kendo-grid kendo-asp.net-mvc kendo-ui-grid

我已经实施了KendoUI Grid

以下是Grid中的View实施。

@(Html.Kendo().Grid<Example.Web.UI.ViewModels.ExampleItem>()
.Name("ExampleGrid")
.Columns(columns =>
{
    columns.Bound(p => p.Name);
    columns.Bound(p => p.Label);
    columns.Bound(p => p.Type);
    columns.Bound(p => p.InputType);

    columns.ForeignKey(p => p.ParentId, (System.Collections.IEnumerable)ViewData["items"], "Id", "Name").Title("Parent");

    columns.Command(command => { command.Edit(); command.Destroy(); });
})
.Scrollable()
.Groupable()
.Sortable()
.Pageable(pageable => pageable
    .Refresh(true)
    .PageSizes(true)
    .ButtonCount(5))

.ToolBar(toolbar => toolbar.Create())
.Editable(editable => editable.Mode(GridEditMode.PopUp))
.DataSource(dataSource => dataSource
    .Ajax()
    .PageSize(20)
    .Events(events => events.Error("error_handler"))
    .Model(model =>
            {
                model.Id(p => p.Id);
                model.Field(p => p.Id).DefaultValue(Guid.NewGuid());
                model.Field(p => p.ParentId).DefaultValue(null);
            })
    .Create(update => update.Action("EditingPopup_Create", "Example"))
    .Read(read => read.Action("EditingPopup_Read", "Example"))
    .Update(update => update.Action("EditingPopup_Update", "Example"))
    .Destroy(update => update.Action("EditingPopup_Destroy", "Example"))
)
)

以下是ExampeItem模型:

public class ExampleItem
{
    [ScaffoldColumn(false)]
    public Guid Id { get; set; }

    public string Name { get; set; }

    public string Label { get; set; }

    public string Type { get; set; }

    [DisplayName("Input Type")]
    public string InputType { get; set; }

    public ExampleItem Parent { get; set; }

    public Guid ParentId { get; set; }
}

在我的Controller我设置了这样的外键项:

ViewData["items"] = exampleItems; // This is a List<ExampleItem>

但加载ParentGrid列为空。这是因为我使用了Guid作为Id的数据类型。

所以我将视图Model更改为:

public class ExampleItem
{
    [ScaffoldColumn(false)]
    public int Id { get; set; }

    public string Name { get; set; }

    public string Label { get; set; }

    public string Type { get; set; }

    [DisplayName("Input Type")]
    public string InputType { get; set; }

    public ExampleItem Parent { get; set; }

    public int? ParentId { get; set; }
}

现在一切正常。所以问题是:

为什么Kendo UI Grid不喜欢外键字段的Guid数据类型?有办法解决这个问题吗?

我甚至尝试使用string,但也没有。

是否可能需要安装其他库,以便使用Guid更好地处理UI组件?

我需要ID为Guid类型,因为记录可以迁移到其他服务器,而且ID必须是唯一的。

0 个答案:

没有答案