I'm using ag-grid and I have a small issue with numeric filtering:
As you can see the sorting is going well unless the numbers are 2xxx but it start to be confusing as soon as it reach 3 numbers.
What I do expect is the sorting starting from 500 and go up to 2400+ or the inverse. Maybe I don't know about a special option to add to achieve this, I'm getting crazy trying different options but nothing seems to work. I hope you can help. Thanks.
UPDATE:
I reproduced the issue on the original ag-grid example on filtering: https://plnkr.co/edit/Tn9ZeCH4fmLr2ZHQPivQ?p=preview I just mutated the year values and as you can see it is not sorting as expected.
if (r.year === 2008) r.year = 860
if (r.year === 2012) r.year = 920