Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a generic MVC3 editor template?

I'm using the following code-snippet extensively in my model templates.

<div class="control-group">
    @Html.LabelFor(model => model.FirstName)
    <div class="controls">
        @Html.TextBoxFor(model => model.FirstName, new { @class = "span3" })
        @Html.ValidationMessageFor(model => model.FirstName)
    </div>
</div>

Is it possible to encapsulate this generically in an editor template so I can use Html.EditorFor(...) without resorting to a custom extension?

like image 608
batkuip Avatar asked Mar 27 '12 07:03

batkuip


1 Answers

Is it possible to encapsulate this generically in an editor template so I can use Html.EditorFor(...) without resorting to a custom extension?

Of course:

~/Views/Shared/EditorTemplates/Foo.cshtml:

<div class="control-group">
    @Html.Label("")
    <div class="controls">
        @Html.TextBox("", ViewData.TemplateInfo.FormattedModelValue, new { @class = "span3" })
        @Html.ValidationMessage("")
    </div>
</div>

and then:

@Html.EditorFor(x => x.FirstName, "Foo")

or:

[UIHint("Foo")]
pubilc string FirstName { get; set; }

and then:

@Html.EditorFor(x => x.FirstName)
like image 121
Darin Dimitrov Avatar answered Oct 09 '22 04:10

Darin Dimitrov