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

Creating Fixed Headers on Scroll

Environment

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

Description

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

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 MVC Grid Resources

See Also