My editor seems to be ignoring the minimum on height.
<div class="col-6">
<label>Notes:</label>
@(Html.Kendo().Editor()
.Name("RMIComment")
.HtmlAttributes(new { style = "height:80px" })
.Resizable(resizable => resizable.Content(true).Min(80))
.Tools(tools => tools.Clear())
)
</div>
<br />
It appears to always draw on the screen around 200px. I want it smaller.
Thanks
Lee