New to Telerik UI for ASP.NET CoreStart a free 30-day trial

Creating Fixed Headers on Scroll

Environment

ProductGrid for Progress® Telerik® UI for UI for ASP.NET Core

Description

How can I create fixed headers on scroll in the Grid for UI for ASP.NET Core?

Solution

To create fixed headers on scroll, apply the following CSS rule:

style.css
<style>
    #second > table > thead,
    #first > table > thead {
        position: sticky;
        top: 0;
    }
</style>

More ASP.NET Core Grid Resources

See Also