Hey guys, does anybody know if there is a way to set a custom columnSorting config something like:
const tableSettings = { columnSorting: [{ column: 0, sortOrder: "asc" }, { column: 4, sortOrder: "desc" }] }
I already went through the docs, and have not encountered anything like that, but there might be something I am ignoring. The idea is to set a multi column sort if possible, I know hands on table already support multi column sort, but wanted to accomplish it without upgrading hands on table version.
Is there another way around this?, was going to perform the sorts by my own and then update table data, is there a better approach?
Last question though, is there a way to use custom sort indicators instead of the default ones?