I have only a few tips on how to set input box width in MVC:
@Html.TextBoxFor(model => model.Status.RowKey, new { size = 200, disabled = "disabled", @readonly = "readonly" })
Now I tried it for a different type of field, but it does not work:
@Html.EditorFor(model => model.Status.BrowserTitle, new { size = 80 })
I would also like to set this to 80 characters, but when I do this, the source does not change and does not show 80.
Bev
Judyj source share