I'm trying to add a class to an input.
This is not working
@Html.EditorFor(x => x.Created, new { @class = "date" })
|
I'm trying to add a class to an input. This is not working
|
||||
|
|
|
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:
and in the custom template:
|
|||||||
|
|
There is no |
|||
|
|
|
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.
|
|||||
|
|
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:
Therefore, I created custom HtmlHelper class that has the following benifits:
I post this here in hopes that it might help someone else at some point. Any suggestions on changes needed are welcome.
And for those that want to know the JQuery syntax that looks for objects with the
Hopefully this helps someone in the future that has this need. |
|||||||
|
|
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:
and in the custom template:
|
|||
|
|