manualSorting not picking up on my data sort order change
I have a table that is using grouping and when the grouping changes the data is sorted again and given to the table. I have manualSorting: true defined as well as the state: { sorting } and the onSortingChange: setSorting as per documentation (https://tanstack.com/table/v8/docs/guide/sorting#manual-server-side-sorting). However, on the initial load of the table, the groups and data are sorted as expected; once I change the group by value, I get a completely random sorting of groups and rows in my table.
The data is sorted on the select callback of a react-query useQuery and I confirmed that the data given to the table actually is correctly sorted.
Any suggestions what the culprit may be?
Sorting Guide | TanStack Table Docs
Examples
Want to skip to the implementation? Check out these examples:
0 Replies