I'm trying to add a css class to a textbox. This is what I have in my view:

<%: Html.EditorFor(m => m.StartDate) %>

I tried following the instructions at this link by making my code:

<%: Html.EditorFor(m => m.StartDate, new { @class: "datepicker" }) %>

But I get a compiler error saying:

Syntax error, ',' expected

What am I doing wrong here?

link|improve this question

feedback

5 Answers

up vote 11 down vote accepted

I would HIGHLY suggest using Editor Templates. It's definitely the "right" way to style your EditorFor.

You can tell a model property to use an Editor Template in two different ways.

The first (the simplest) is to create an editor template for a certain data type - DateTime for example.
The second way to do it is to set it declaratively in your DataAnnotations by using a UIHint.

Edit
I'd also like to add that you should use the "date" type in your input field so that even when JavaScript is disabled, your user can stills see a native datepicker (only valid on modern HTML5 browsers)
<input id="meeting" type="date" value="2011-01-13"/>

link|improve this answer
feedback

With MVC3, I kept banging my head because I couldn't get this to work. I didn't want to create a whole EditorTemplate for just adding one class.

Well, instead of using EditorFor, use TextBoxFor, with of course the equals sign like so:

@Html.TextBoxFor(m=> m.ZipCode, new { @class = "zip" })
link|improve this answer
3  
This doesn't work when you need to have your data in editmode. I.e., otherwise decorating your model with something like [DisplayFormat(DataFormatString = "{0:dd-MMMM-yyyy}", ApplyFormatInEditMode = true)] won't work. – Abel Apr 16 at 13:27
feedback

There is no overload for EditorFor that allows you to set HtmlProperties. (IDictionary htmlAttributes)

This link explains how to do it:

http://aspadvice.com/blogs/kiran/archive/2009/11/29/Adding-html-attributes-support-for-Templates-2D00-ASP.Net-MVC-2.0-Beta_2D00_1.aspx

link|improve this answer
feedback

I guess a quick and dirty way to do this would be in jQuery, yes?

$(document).ready(function () {
    $('#StartDate').addClass('datepicker');
});
link|improve this answer
and when javascript is turned off? – Chase Florell Oct 11 '11 at 15:13
1  
Then your datepicker probably won't work anyway. Are people really programming web applications with the expectation that they will work with javascript disabled? – idor_brad Oct 19 '11 at 15:00
yes, they absolutely are. And for the record, modern browsers can have javascript disabled, and still show a datepicker if you use the HTML5 <input id="MyDate" type="date" value="2011-01-13"/> – Chase Florell Oct 19 '11 at 15:36
Then what do you do if the user doesn't have a modern browser? – idor_brad Oct 19 '11 at 19:08
5  
Go ahead and disable javascript, refresh this page, and try to enter a reply. You can't. It is reasonable to expect your users to have javascript enabled, or certain things like a datepicker will not work. They could still type the date in in that scenario. – idor_brad Oct 24 '11 at 21:23
show 1 more comment
feedback

Here's a very simple solution: remove the double quotes from "datepicker" and retype them back into VisualStudio and it should work.

I had the same problem. I copied/pasted sample code from the web and the code had a special type of quote which caused the "," syntax problem. I know it's really not obvious.

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.