Wiem, że spóźniłem się na przyjęcie, ale pomyślałem, że ten wariant może ci się przydać, ponieważ pozwala on również na użycie ciągów opisowych zamiast stałych wyliczania w menu rozwijanym. Aby to zrobić, udekoruj każdą pozycję wyliczenia atrybutem [System.ComponentModel.Description].
Na przykład:
public enum TestEnum
{
[Description("Full test")]
FullTest,
[Description("Incomplete or partial test")]
PartialTest,
[Description("No test performed")]
None
}
Oto mój kod:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Mvc;
using System.Web.Mvc.Html;
using System.Reflection;
using System.ComponentModel;
using System.Linq.Expressions;
...
private static Type GetNonNullableModelType(ModelMetadata modelMetadata)
{
Type realModelType = modelMetadata.ModelType;
Type underlyingType = Nullable.GetUnderlyingType(realModelType);
if (underlyingType != null)
{
realModelType = underlyingType;
}
return realModelType;
}
private static readonly SelectListItem[] SingleEmptyItem = new[] { new SelectListItem { Text = "", Value = "" } };
public static string GetEnumDescription<TEnum>(TEnum value)
{
FieldInfo fi = value.GetType().GetField(value.ToString());
DescriptionAttribute[] attributes = (DescriptionAttribute[])fi.GetCustomAttributes(typeof(DescriptionAttribute), false);
if ((attributes != null) && (attributes.Length > 0))
return attributes[0].Description;
else
return value.ToString();
}
public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression)
{
return EnumDropDownListFor(htmlHelper, expression, null);
}
public static MvcHtmlString EnumDropDownListFor<TModel, TEnum>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TEnum>> expression, object htmlAttributes)
{
ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);
Type enumType = GetNonNullableModelType(metadata);
IEnumerable<TEnum> values = Enum.GetValues(enumType).Cast<TEnum>();
IEnumerable<SelectListItem> items = from value in values
select new SelectListItem
{
Text = GetEnumDescription(value),
Value = value.ToString(),
Selected = value.Equals(metadata.Model)
};
// If the enum is nullable, add an 'empty' item to the collection
if (metadata.IsNullableValueType)
items = SingleEmptyItem.Concat(items);
return htmlHelper.DropDownListFor(expression, items, htmlAttributes);
}
Możesz to zrobić według własnego uznania:
@Html.EnumDropDownListFor(model => model.MyEnumProperty)
Mam nadzieję, że to ci pomoże!
** EDIT 2014-JAN-23: Microsoft właśnie wydał MVC 5.1, który ma teraz funkcję EnumDropDownListFor. Niestety wydaje się, że nie przestrzega atrybutu [Opis], więc powyższy kod nadal obowiązuje. Patrz sekcja Enum w uwagach do wydania Microsoft dla MVC 5.1.
Aktualizacja: obsługuje jednak atrybut Display[Display(Name = "Sample")]
, więc można go użyć.
[Aktualizacja - właśnie to zauważyłem, a kod wygląda jak rozszerzona wersja kodu tutaj: https://blogs.msdn.microsoft.com/stuartleeks/2010/05/21/asp-net-mvc-creating-a- dropdownlist-helper-for-enums / , z kilkoma dodatkami. Jeśli tak, uznanie autorstwa wydaje się uczciwe ;-)]