glittershark / reactable

Fast, flexible, and simple data tables in React
glittershark.github.io/reactable
MIT License
1.51k stars 223 forks source link

Sorting numbers or currency only sorts the first digit #399

Closed iweurman closed 2 years ago

iweurman commented 6 years ago

If i sort my Column it only sorts from the first digits, but not the whole number. How can I fix this? it doesn't matter if I use the currency sort function or numbers. The numbers are fetched from objects, do I need to convert those to strings maybe?

Currency: 88 860 810000 756 74500 5240 472200 4651 297100 241700 23390 1... etc...

sortable={{
  column: 'Currency', Currency: function (a, b) {
    return a > b ? 1 : -1;
   }
}}
shukla2009 commented 5 years ago

+1