Posted 28 Jan 2017 Link to this post
Hi,
When I set the grid scrollable auto, the grid content div height style is not auto and overwrite the min-height value specified in css. Why?
<
style
>
.k-grid-content {
min-height: 200px;
max-height: 400px;
height:auto !important;
}
</
@(Html.Kendo().Grid(Model)
.Scrollable(scrollable => scrollable.Height("auto"))
)
Posted 01 Feb 2017 Link to this post
<style>
.k-grid,
.k-grid .k-auto-scrollable {
height
:
auto
!important
;
overflow-y:
visible
</style>