Is there a way to set the height on a MultiLine Textbox in the MVC Grid? It seems that IE 11 is showing a little more than a row but Chrome and FireFox show multiple rows when editing a row. I have the [DataType(DataType.MultilineText)] attribute set on the property I'm editing in my View Model.
ViewModel
[DataType(DataType.MultilineText)]
public string Comments { get; set; }
Grid column definition
columns.Bound(c => c.Comments).Width(400);
See attached for screenshots. I need this to be consistent so is there a way to get the height of the editor textbox the same?