Double filter icons in DatGrid components

Hi
We have realized that suddenly a second identical filter icon have appeared on every column in the DataGrid component on all our pages, is it a bug or an unknown feature?

Our Blazor Server Application runs on
Radzen 2.85.1
Radzen.Blazer 4.19.1
.Net 7.0

Best Regards
Tommy Norman

1 Like

Most probably you are using old/custom theme and the CSS is not updated to the latest.

The reason there are two filter icons is a change on the theme css. There is a CSS to display the icon filter

  .rz-grid-filter-icon:after {
    content: 'filter_alt'; } 

which creates a second icon, either remove the :after or the content.

The application which displays the behavior is from Radzen Studio (Blazor), a "standard" application ,where everything is configured by hand, does not show such behavior.

An alternative for the page / component where you have the datagrid is to edit the choosen theme and either remove the :after or the content.

Previous versions do not have the :after, yielding no duplicates.

1 Like

Hi Marcello,
Thanks for the answer, now it looks nice again in the grids :slight_smile:

Regards
Tommy