Hide Filter Button in the Column Header of the Data Table

How do you hide the filter button in the column header of the data table?

image

Hello @COR6603,

You can hide filter icons using this CSS:

span.k-icon.k-i-filter {
    display: none;
}
1 Like

Works great! Thank you so much!

1 Like