具有文本选择选项值的枚举的通用EditorTemplate

时间:2015-07-15 21:13:51

标签: asp.net-mvc enums mvc-editor-templates

我一直在使用这个编辑器模板进行枚举:

@model Enum

@{
    var htmlAttributesFromView = ViewData["htmlAttributes"] ?? new { };
    var htmlAttributes = Html.MergeHtmlAttributes(htmlAttributesFromView, new { @class = "form-control" });
}



<div class="form-group">
    @Html.LabelFor(model => model, htmlAttributes: new { @class = "control-label col-md-3" })
    <div class="col-md-8">

        @Html.EnumDropDownListFor(x => x, htmlAttributes)
        @Html.ValidationMessageFor(model => model)
    </div>
    <a class="infoonclick col-md-1" title="@Html.DisplayNameFor(model => model)" data-content="@Html.DescriptionFor(model => model)">
        <span class="fa fa-info-circle"></span>
    </a>
</div>

EnumDropDownListFor()给我这样的东西:

<option value="0">blah0</option>
<option value="1">blah1</option>

我想为值和文本创建一个使用枚举文本(或显示名称)的版本。

<option value="blah0">blah0</option>
<option value="blah1">blah1</option>

我找到了一种方法,可以使用键入特定枚举的模板来实现,但如果可能的话,我想对所有枚举进行一般性操作。

1 个答案:

答案 0 :(得分:1)

这是一个应该有用的扩展方法:

public static MvcHtmlString EnumTextDropDownListFor<TModel>(this HtmlHelper<TModel> html, Expression<Func<TModel, Enum>> expression, Type enumType, object htmlAttributes)
{
    var enumValues = Enum.GetValues(enumType).OfType<Enum>().Select(v => v.ToString()).ToArray();
    var selectList = new SelectList(enumValues.Select(v => new SelectListItem { Text = v, Value = v }));
    return html.DropDownListFor(expression, selectList, htmlAttributes);
}