Anybody else having trouble setting the height of a grid in asp.net core?
@(Html.Kendo().Grid<Basic_Core.Models.Authors>()
.Name("grid")
.HtmlAttributes(new { style = "height:850px;" })
etc......
No matter what height I set it always renders with 400px. This even happens with the demo grid from Telerik.
The exact same code works just fine with MVC5
@(Html.Kendo().Grid<Basic_MVC.Models.Authors>()
.Name("grid")
.HtmlAttributes(new { style = "height:850px;" })
etc.....
Would be really grateful for an insightful answer.