gpt4 book ai didi

c# - kendo Grid 中的可空枚举属性

转载 作者:太空宇宙 更新时间:2023-11-03 21:18:47 27 4
gpt4 key购买 nike

我有几个枚举属性,我想将它们绑定(bind)到网格。我正在使用以下代码

column.ForeignKey(p => p.<EnumpropertyName>, 
Model.<EnumList_As_SelectedItemList>, "Value", "Text");

EnumpropertyName 是可为空的枚举。

在另一列中,我指的是属性的子属性

column.ForeignKey(p => p.<Enumproperty2Name>.<childProperyName>, 
Model.<AnotherEnumList_As_SelectedItemList>, "Value", "Text");

childProperyName 是可为空的枚举。

因为这是我拥有的子对象内部

.Model(model =>
{
model.Id(p => p.InfoTableId);
model.Field(p => p.<Enumproperty2Name>).DefaultValue(new Enumproperty2Name());
})

这是行不通的,因为我添加了新行并为这些下拉列表选择了值,选择后值丢失了。但是,如果我删除 nullable 并让它们成为常规枚举属性,它们就可以工作。

如何使可空枚举在剑道网格中工作。

谢谢

最佳答案

要在 Kendo Grid 中添加下拉菜单,请尝试以下操作。

columns.ForeignKey(p => p.ExamDateStatus, (System.Collections.IEnumerable)ViewData["ExamStatus"], "Value", "Text")
.Title("Status").EditorTemplateName("ComboForeignKey").Width(100);

“ComboForeignKey”是一个局部 View ,位于 Views\Shared\EditorTemplates 文件夹中。它的内容必须类似于以下内容。

@model object

@(
Html.Kendo().DropDownListFor(m => m).OptionLabel("Select Below...")
.HtmlAttributes(new { data_value_primitive = "true"})
.BindTo((SelectList)ViewData[ViewData.TemplateInfo.GetFullHtmlFieldName("") + "_Data"])
)

关于c# - kendo Grid 中的可空枚举属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32231818/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com