I understand that in Razor, @Html does a bunch of neat things, like generate HTML for links, inputs, etc.

But I don't get the DisplayFor function...

Why would I write:

@Html.DisplayFor(model => model.Title)

when I could just write:

@Model.Title
link|improve this question

feedback

3 Answers

up vote 31 down vote accepted

Html.DisplayFor() will render the DisplayTemplate that matches the property's type.

If it can't find any, I suppose it invokes .ToString().


If you don't know about display templates, they're partial views that can be put in a DisplayTemplates folder inside the view folder associated to a controller.


Example:

If you create a view named String.cshtml inside the DisplayTemplates folder of your views folder (e.g Home, or Shared) with the following code:

@model string

@if (string.IsNullOrEmpty(Model)) {
   <strong>Null string</strong>
}
else {
   @Model
}

Then @Html.DisplayFor(model => model.Title) (assuming that Title is a string) will use the template and display <strong>Null string</strong> if the string is null, or empty.

link|improve this answer
Seems pointless to me, in most cases, to use DisplayFor for primitive types. For example, DateTime would display date/time even if the time part was useless. If you could specify a format string of "{0:d}" for a DateTime type in the property's attributes on the Model, DisplayFor could possibly be more useful. – enorl76 Jan 11 at 6:48
@enorl76 you can. See Daveo's answer. – Bertrand Marron Jan 11 at 10:14
You could add a jQuery date picker to the EditorFor template for a DateTime datatype to always show a date picker in forms for example. – Dr. Zim Apr 18 at 1:54
feedback

I think the main benefit would be when you define your own Display Templates, or use Data annotations.

So for example if your title was a date you could define

[DisplayFormat(DataFormatString = "{0:d}")]

and then on every page it would display the value in a consistant manner. Otherwise you may have to customise the display on multiple pages. So it does not help much for plain strings, but it does help for currencies, dates, emails, urls etc.

link|improve this answer
feedback

DisplayFor is also useful for templating. You could write a template for your Model, and do something like this:

@Html.DisplayFor(m => m)

Similar to @Html.EditorFor(m => m). It's useful for the DRY principal so that you don't have to write the same display logic over and over for the same Model.

Take a look at this blog on MVC2 templates. It's still very applicable to MVC3:

http://www.dalsoft.co.uk/blog/index.php/2010/04/26/mvc-2-templates/


It's also useful if your Model has a Data annotation. For instance, if the property on the model is decorated with the EmailAddress data annotation, DisplayFor will render it as a mailto: link.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.