How do I change the height of the Kendo Grid when using wrappers?
Exmaple setting table to 750px by adding a style attribute:HtmlAttributes()
will let you add attributes to the TableHtmlAttributes()
will let you add attributes to just the element
@Html.Kendo().Grid(Model)
.Name("Grid")
.TableHtmlAttributes(new {style="height: 750px;"})