I’m using the React UI DataTable to display some data. Each column has up and down arrows next to the header for sorting, but clicking them does nothing.
Looking at the @cuba-platform/react-ui code, I see the “enableSorter: true” setting in the javascript datatable.render() function, but I don’t see any implementation of the actual “sorter” or sort functions (string, number, date).
Is sorting implemented yet or do I need to build it myself?
FYI - here’s a link to one implementation method: https://www.aleksandrhovhannisyan.com/blog/dev/sorting-ant-design-tables/