How do you hide the filter button in the column header of the data table?
Hello @COR6603,
You can hide filter icons using this CSS:
span.k-icon.k-i-filter { display: none; }
Works great! Thank you so much!