sorting in my table is not working.
LeftIcon - sort, RightIcon - filter. https://codesandbox.io/s/purple-feather-phzm1j?file=/src/App.js - my project
I'm assuming due to the nesting in the data, how do I set this up?
sorting in my table is not working.
LeftIcon - sort, RightIcon - filter. https://codesandbox.io/s/purple-feather-phzm1j?file=/src/App.js - my project
I'm assuming due to the nesting in the data, how do I set this up?
It is related to nesting of data. You have two choices...
Flatten your JSON to be more friendly to the built in sorting.
Use sortFunction
on the column to write a custom sort on how that column should be sorted.