Problem polega na tym, że twój szablon może zawierać kilka elementów HTML, więc MVC nie będzie wiedział, do którego z nich zastosować twój rozmiar / klasę. Będziesz musiał sam to zdefiniować.
Utwórz szablon jako pochodzenie z własnej klasy o nazwie 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
}
}
W szablonie możesz to zrobić:
<input value="<%= Model.Value %>" <%= Model.GetAttributesString() %> />
Twoim zdaniem robisz:
<%= Html.EditorFor(x => x.StringValue) %>
or
<%= Html.EditorFor(x => new TextBoxViewModel(x.StringValue, new IDictionary<string, object> { {'class', 'myclass'}, {'size', 15}}) %>
Pierwsza forma wyrenderuje domyślny szablon dla łańcucha. Drugi formularz wyrenderuje szablon niestandardowy.
Alternatywna składnia używa płynnego interfejsu:
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) %>
Zauważ, że zamiast robić to w widoku, możesz to również zrobić w kontrolerze lub znacznie lepiej w 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) });
}
Zauważ również, że możesz utworzyć podstawową klasę TemplateViewModel - wspólną podstawę dla wszystkich szablonów widoków - która będzie zawierała podstawowe wsparcie dla atrybutów / itp.
Ale ogólnie myślę, że MVC v2 potrzebuje lepszego rozwiązania. To wciąż Beta - idź o to zapytaj ;-)