Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* HTMLヘルパー EditorForでカスタムテンプレートを使う [#df...
*** Views/Home/index.cshtml [#p6a78b4e]
@Html.EditorFor(m => m.MyDate, "_DateEditor")
*** Views/Shared/EditorTemplates/_DateEditor.cshtml [#m00...
@model DateTime
@Html.TextBox("", Model.ToString("yyyy-MM-dd"),
new { @Value = Model.Year <= 1900 ? "" : Model.ToSt...
** 参考 [#n4e40865]
http://stackoverflow.com/questions/3735400/html-attribute...
終了行:
* HTMLヘルパー EditorForでカスタムテンプレートを使う [#df...
*** Views/Home/index.cshtml [#p6a78b4e]
@Html.EditorFor(m => m.MyDate, "_DateEditor")
*** Views/Shared/EditorTemplates/_DateEditor.cshtml [#m00...
@model DateTime
@Html.TextBox("", Model.ToString("yyyy-MM-dd"),
new { @Value = Model.Year <= 1900 ? "" : Model.ToSt...
** 参考 [#n4e40865]
http://stackoverflow.com/questions/3735400/html-attribute...
ページ名: