El problema es que su plantilla puede contener varios elementos HTML, por lo que MVC no sabrá a cuál aplicar su tamaño / clase. Tendrás que definirlo tú mismo.
Haga que su plantilla se derive de su propia clase llamada TextBoxViewModel:
public class TextBoxViewModel
{
public string Value { get; set; }
IDictionary<string, object> moreAttributes;
public TextBoxViewModel(string value, IDictionary<string, object> moreAttributes)
{
// set class properties here
}
public string GetAttributesString()
{
return string.Join(" ", moreAttributes.Select(x => x.Key + "='" + x.Value + "'").ToArray()); // don't forget to encode
}
}
En la plantilla puede hacer esto:
<input value="<%= Model.Value %>" <%= Model.GetAttributesString() %> />
En su opinión, sí:
<%= Html.EditorFor(x => x.StringValue) %>
or
<%= Html.EditorFor(x => new TextBoxViewModel(x.StringValue, new IDictionary<string, object> { {'class', 'myclass'}, {'size', 15}}) %>
El primer formulario representará la plantilla predeterminada para la cadena. El segundo formulario representará la plantilla personalizada.
La sintaxis alternativa utiliza una interfaz fluida:
public class TextBoxViewModel
{
public string Value { get; set; }
IDictionary<string, object> moreAttributes;
public TextBoxViewModel(string value, IDictionary<string, object> moreAttributes)
{
// set class properties here
moreAttributes = new Dictionary<string, object>();
}
public TextBoxViewModel Attr(string name, object value)
{
moreAttributes[name] = value;
return this;
}
}
// and in the view
<%= Html.EditorFor(x => new TextBoxViewModel(x.StringValue).Attr("class", "myclass").Attr("size", 15) %>
Tenga en cuenta que en lugar de hacer esto en la vista, también puede hacerlo en el controlador, o mucho mejor en el ViewModel:
public ActionResult Action()
{
// now you can Html.EditorFor(x => x.StringValue) and it will pick attributes
return View(new { StringValue = new TextBoxViewModel(x.StringValue).Attr("class", "myclass").Attr("size", 15) });
}
También tenga en cuenta que puede hacer que la clase TemplateViewModel base, un terreno común para todas sus plantillas de vista, contendrá soporte básico para atributos / etc.
Pero, en general, creo que MVC v2 necesita una mejor solución. Todavía es Beta, pídelo ;-)