EditorFor および DisplayFor ヘルパー メソッド用にいくつかの MVC テンプレートを作成し、Twitter Bootstrap フレームワークを使用して思いどおりにスタイルを設定しました。これで、必要なすべてのビットに対して有効なソリューションが得られましたが、状態のリストを表示するために設定した 1 つの部分を一般化したいと思います。ユーザーの住所のドロップダウンに表示する State 列挙型 (米国のすべての州のリストを含む) があります。[DataType] 属性を使用して、MVC で State.cshtml テンプレートを使用できるようにしました。
[Required]
[Display(Name = "State")]
[DataType("State")]
public State State { get; set; }
したがって、うまく機能しますが、 DataType("Enum") のようなことや、すべての列挙型に対してこのテンプレートを一般的にヒットする他の方法を実行できるように変更したいと思います。
テンプレートは次のようになります。
@using System
@using System.Linq
@using Beno.Web.Helpers
@using TC.Util
@model Beno.Model.Enums.State
<div class="control-group">
@Html.LabelFor(m => m, new {@class = "control-label{0}".ApplyFormat(ViewData.ModelMetadata.IsRequired ? " required" : "")})
<div class="controls">
<div class="input-append">
@Html.EnumDropDownListFor(m => m)
<span class="add-on">@(new MvcHtmlString("{0}".ApplyFormat(ViewData.ModelMetadata.IsRequired ? " <i class=\"icon-star\"></i>" : "")))</span>
</div>
@Html.ValidationMessageFor(m => m, null, new {@class = "help-inline"})
</div>
</div>
EnumDropDownListFor は、以前に投稿したヘルパー メソッドであり、あらゆる列挙型で一般的に機能します。私が知らないのは、このテンプレートを変更して、モデルオブジェクトとして一般的な列挙型を取得するにはどうすればよいですか?
更新:完全を期すために、EnumDropDownListFor メソッドのリストを含めます。
public static MvcHtmlString EnumDropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, object htmlAttributes = null) where TProperty : struct, IConvertible
{
if (!typeof(TProperty).IsEnum)
throw new ArgumentException("TProperty must be an enumerated type");
var selectedValue = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData).Model.ToString();
var selectList = new SelectList(from value in EnumHelper.GetValues<TProperty>()
select new SelectListItem
{
Text = value.ToDescriptionString(),
Value = value.ToString()
}, "Value", "Text", selectedValue);
return htmlHelper.DropDownListFor(expression, selectList, htmlAttributes);
}
モデル タイプを Enum に変更すると、ヘルパー メソッドの呼び出しのある行で次のエラーが発生します。
CS0453: The type 'System.Enum' must be a non-nullable value type in order to use it as parameter 'TProperty' in the generic type or method 'Beno.Web.Helpers.ControlHelper.EnumDropDownListFor<TModel,TProperty>(System.Web.Mvc.HtmlHelper<TModel>, System.Linq.Expressions.Expression<System.Func<TModel,TProperty>>, object)'
次に、TProperty が列挙型であり、struct where 制約であるかどうかのチェックを削除すると、以下の列挙値を取得しようとしている行でコンパイル エラーが発生します。
System.ArgumentException: Type 'Enum' is not an enum
私がここでしようとしていることをするのは不可能なのだろうか。