Please see the attached screenshot.
This only happens when we have both the virtual scrolling and the height set and then we filter. It doesn't always happen, usually only after filtering on multiple columns.
Is there any way around this behavior? Maybe setting the scrollable height on one of the containers?
This only happens when we have both the virtual scrolling and the height set and then we filter. It doesn't always happen, usually only after filtering on multiple columns.
@(Html.Kendo().Grid<
BulletinModel
>()
.Name("Grid")
.Editable(ed => ed.Mode(GridEditMode.PopUp).Window(w => w.Width(950)))
.Selectable()
.Scrollable(scrollable => scrollable.Virtual(true))
.Sortable()
.HtmlAttributes(new { @style = "height: 600px;" }))