But now the column filter menu is offset and making the grid jump when you use it - is there anything that's built into the KendoReact Grid that would prevent these sort of related issues from springing up?
1 Answer, 1 is accepted
1
Accepted
Stefan
Telerik team
answered on 21 Jul 2021, 05:17 AM
Hello, Janki,
The GridHeader will be at the top when the Grid is scrollable(it is scrollable by default).
I ended up using CSS and it worked like a charm (may not be useful for you if your users are on IE - see latest CanIUse here):
.k-grid-header { position: sticky; top: 0px; z-index: 1000; }
But now the column filter menu is offset and making the grid jump when you use it - is there anything that's built into the KendoReact Grid that would prevent these sort of related issues from springing up?