Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Official "How to" for MVC Editor/Display Templates?

I have been using MVC Editor & Display Templates for a while, but have come to realize that there seems to be very little official documentation on MVC Editor/Display Templates (Html.EditorFor() and Html.DisplayFor()). I found the basic MSDN documentation just showing the technical details (which on their own, are not very helpful), but I'm looking more for an official how-to, sort of like this example.

Are Editor/Display Templates more of an afterthought, and not really widely enough used to justify more in-depth official documentation?

Or, am I blind, and what I'm looking for exists, I just haven't found it yet?

like image 928
Jerad Rose Avatar asked Sep 28 '12 17:09

Jerad Rose


3 Answers

Official documentation? Don't know any off hand, but I know there are a ton of examples. In particular, I like Phil Haack's discussion on model binding to lists. It includes an example for an editor template in a pretty complicated example. There's source code there, too.

Since he's co-authored every MVC Wrox book, I consider him a pretty definitive source:

http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx

Here's another blog post (non-official) in a similar vein:

http://blogs.msdn.com/b/stuartleeks/archive/2010/03/30/collections-and-asp-net-mvc-templated-helpers-displayfor-editorfor.aspx

like image 165
Killnine Avatar answered Nov 16 '22 01:11

Killnine


best article that I have found for it is:

http://www.growingwiththeweb.com/2012/12/aspnet-mvc-display-and-editor-templates.html

It explains how to create DisplayFor and EditorFor templates really well.

like image 43
balexandre Avatar answered Nov 15 '22 23:11

balexandre


ASP.NET MVC have a lot of materials on http://www.asp.net/mvc with different examples. EditorTemplates and DisplayTemplates is spetial folders for models (like here Quick Tips About ASP.NET MVC – Editor Templates) and you asking about html helpers, not templates.

like image 29
webdeveloper Avatar answered Nov 16 '22 00:11

webdeveloper