New to Kendo UI for AngularStart a free 30-day trial

Styling the Grid Column Headers When Filtering is Applied

Updated on Jan 20, 2026

Environment

ProductProgress® Kendo UI for Angular Grid

Description

How can I style the headers of a Grid column when filtering is applied?

Solution

When the grid is filtered, the k-active class is applied to the filter menu. Use CSS nesting to style the header of the filtered column:

css
.k-header:has(.k-active) {
    background-color: #FFF0F5;

    .k-column-title {
        color: #191970;
    }
}

The following example demonstrates the suggested approach.

Loading ...

See Also

Styling the Angular Data Grid Columns

In this article
EnvironmentDescriptionSolutionSee Also
Not finding the help you need?
Contact Support