Top "Mvc-editor-templates" questions

ASP.

ASP.NET MVC 4 Editor Template for basic types

I've created a template for Number input and if I do @Html.EditorFor(model => model.SomeValue, "Number") it works …

asp.net-mvc-4 mvc-editor-templates
Setting default selected value of selectlist inside an editor template

I have this code to set the default value of my select list: public ActionResult Register() { IList<Country> …

asp.net-mvc model drop-down-menu selectlist mvc-editor-templates
Change date format in ASP.NET MVC application

I need to change date format to be dd.MM.yyyy. I am getting client side validation error because ASP.…

asp.net-mvc asp.net-mvc-3 asp.net-mvc-4 razor mvc-editor-templates
How can I make Html.CheckBoxFor() work on a string field?

I'm using ASP.NET MVC3 with Razor and C#. I am making a form builder of sorts, so I have …

c# asp.net-mvc asp.net-mvc-3 razor mvc-editor-templates
DisplayFormat not getting applied on decimal value

I have a model property I'm trying to render using an EditorFor template, and I'm trying to apply formatting using …

asp.net-mvc asp.net-mvc-3 decimal mvc-editor-templates displayformat
How to automatically add placeholder attribute to html input type number in mvc 4?

This is a very specific issue. I managed to automatically add the placeholder attribute to html5 email input type by …

c# asp.net-mvc-4 data-annotations placeholder mvc-editor-templates
How to use EditorFor inside a foreach

I have a model: public class MyListModel { public int ID {get;set;} public List<User> Users{get;set;} } …

asp.net-mvc mvc-editor-templates
Formatting currency using display template in MVC

I found this post about Display and EditorTemplates for MVC: http://www.growingwiththeweb.com/2012/12/aspnet-mvc-display-and-editor-templates.html It creates a display …

asp.net-mvc model-view-controller mvc-editor-templates asp.net-mvc-templates
How to add and use a razor editor template

I have tried to find documentation or samples on how to incorporate razor editor templates into a project. the following …

asp.net-mvc razor mvc-editor-templates
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 …

asp.net-mvc asp.net-mvc-3 mvc-editor-templates