I just had some great advice on how to set the width of an input field in MVC:
@Html.TextBoxFor(model => model.Status.RowKey, new { size = 200, disabled = "disabled", @readonly = "readonly" })
Now I hav tried it for another type of field but it doesn't work:
@Html.EditorFor(model => model.Status.BrowserTitle, new { size = 80 })
I would also like to set this for 80 characters but when I do this the source does not change and does not show 80.
Bev