Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to add a class to an input.

This is not working

@Html.EditorFor(x => x.Created, new { @class = "date" })
share|improve this question

5 Answers

up vote 37 down vote accepted

Adding a class to an editor template doesn't make sense as inside this template you could have many different tags. So you need to assign the class inside the editor template:

@Html.EditorFor(x => x.Created)

and in the custom template:

<div>
    @Html.TextBoxForModel(x => x.Created, new { @class = "date" })
</div>
share|improve this answer
2  
This works great, thanks. Having trouble formatting the field value per the DisplayFormat annotation in my model. Formatted as annotated with EditorFor and DisplayFor, but not TextBoxFor :( Looks like I must use a custom template, unless someone can point me to something I'm missing. ? – Sean Dec 25 '11 at 17:53
Having the same problem where TextBoxFor doesn't honor the DisplayFormat set. – jocull Nov 29 '12 at 20:50

There is no EditorFor override that let's you pass in an anonymous object whose properties would somehow get added as attributes on some tag, especially for the built-in editor templates. You would need to write your own custom editor template and pass the value you want as additional viewdata

share|improve this answer

You can't set class for the generic EditorFor. If you know the editor that you want, you can use it straight away, there you can set the class. You don't need to build any custom templates.

@Html.TextBoxFor(x => x.Created, new { @class = "date" }) 
share|improve this answer
2  
Good deal, it was nice not needing to build a custom template. – Steve Duitsman Sep 29 '11 at 17:18

I know this is an older question, but I had the same frustrating issue and I didn't want to create an EditorTemplate that applied to all DateTime values (there were times in my UI where I wanted to display the time and not a JQueryUI drop-down calendar). In my research, the root issues I came across were:

  • The standard TextBoxFor helper allowed me to apply a custom class of "date-picker" to render the unobtrusive JQueryUI calender, but TextBoxFor wouldn't format a DateTime without the time, therefore causing the calendar rendering to fail.
  • The standard EditorFor would display the DateTime as a formatted string (when decorated with the proper attributes such as [DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:dd/MM/yyyy}")], but it wouldn't allow me to apply the custom "date-picker" class.

Therefore, I created custom HtmlHelper class that has the following benifits:

  • The method automatically converts the DateTime into the ShortDateString needed by the JQuery calendar (JQuery will fail if the time is present).
  • By default, the helper will apply the required htmlAttributes to display a JQuery calendar, but they can be overridden if needs be.
  • If the date is null, MVC will put a date of 1/1/0001 as a value. This method replaces that with an empty string.

I post this here in hopes that it might help someone else at some point. Any suggestions on changes needed are welcome.

public static MvcHtmlString CalenderTextBoxFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, object htmlAttributes = null)
{
  var mvcHtmlString = System.Web.Mvc.Html.InputExtensions.TextBoxFor(htmlHelper, expression, htmlAttributes ?? new { @class = "text-box single-line date-picker" });
  var xDoc = XDocument.Parse(mvcHtmlString.ToHtmlString());
  var xElement = xDoc.Element("input");
  if (xElement != null)
  {
    var valueAttribute = xElement.Attribute("value");
    if (valueAttribute != null)
    {
      valueAttribute.Value = DateTime.Parse(valueAttribute.Value).ToShortDateString();
      if (valueAttribute.Value == "1/1/0001")
        valueAttribute.Value = string.Empty;
    }
  }
  return new MvcHtmlString(xDoc.ToString());
}

And for those that want to know the JQuery syntax that looks for objects with the date-picker class decoration to then render the calendar, here it is:

$(document).ready(function () {
  $('.date-picker').datepicker({ inline: true, maxDate: 0, changeMonth: true, changeYear: true });
  $('.date-picker').datepicker('option', 'showAnim', 'slideDown');
});

Hopefully this helps someone in the future that has this need.

share|improve this answer
That helped me just now, little issue with it - you need to check to make sure the valueAttribute.Value isnt empty or whitespace before passing it to the DateTime.Parse method, otherwise you risk a FormatException being thrown on an empty field. – Moo Mar 3 '12 at 22:16
Thanks. You helped me much. – Bronzato Feb 16 at 10:43
This helped me, however if you're implementing this and you're expecting the field to perform validation you will need to apply this logic: stackoverflow.com/questions/12023970/… – Aaron Newton Apr 18 at 23:47

It is possible to provide a class or other information through AdditionalViewData - I use this where I'm allowing a user to create a form based on database fields (propertyName, editorType, and editorClass)

based on your initial example:

@Html.EditorFor(x => x.Created,new { cssClass = "date" })

and in the custom template:

<div>
@Html.TextBoxFor(x => x.Created, new { @class = ViewData["cssClass"] })
</div>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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