How to change the height of Kendo ui Grid

Solution 1:

I assume the method you are looking for is under the Scrollable configuration (it is there because one Grid needs to be scrollable if you want it to have height)

.Scrollable(scr=>scr.Height(230))

Solution 2:

To change height dynamically

remove htmlattributes:

.HtmlAttributes(new { style = "height:600px;" })

Add scrollable with auto:

.Scrollable(a => a.Height("auto"))