How do I change the height of the Kendo Grid when using wrappers?
To change height dynamically
remove htmlattributes:
.HtmlAttributes(new { style = "height:600px;" })
Add scrollable with auto:
.Scrollable(a => a.Height("auto"))