HTMLヘルパー EditorForでカスタムテンプレートを使う

Views/Home/index.cshtml

 @Html.EditorFor(m => m.MyDate, "_DateEditor")

Views/Shared/EditorTemplates/_DateEditor.cshtml

 @model DateTime
 @Html.TextBox("", Model.ToString("yyyy-MM-dd"),
     new { @Value = Model.Year <= 1900 ? "" :  Model.ToString("yyyy-MM-dd")})

参考

http://stackoverflow.com/questions/3735400/html-attributes-for-editorfor-in-asp-net-mvc


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2014-03-29 (土) 01:42:16