Datagrid - Remove the sort icon and still be able to sort?

Hey I just want to ask, if it is possible to remove or make the sort icon of the datagrid invisible?

I have a lot of information and a lot of columns in my datagrid and it is getting a bit messy.
By resizing the columns, the titles of them have a different height and I am searching for a way to fix it.

One small step would be to remove the sort icon. The ability to sort could be possible by clicking the title.

is something like this possible?

Hi @SideSky,

Yes, this is possible via CSS:

.rz-sortable-column-icon {
  display: none !important;
}
1 Like

Thank you very much!