asp.net mvc - How to add new css class in @Html.TextBox mvc4 -
i have used following code add css class @html.textbox
working @html.textboxfor
, not @html.textbox
.
@html.textbox("ticket_new_attachment_attributes_0_description", new { @class= "bigfield"})
what missing?
try this
@html.textbox("ticket_new_attachment_attributes_0_description", null, new { @class= "bigfield"})
Comments
Post a Comment