I want to sort date column in gridjs and i am displaying it in mm/dd/yyyy format. Currently it is taking as string and sorting incorrectly. Any formatter or sort option available for date column in girdjs? No solution till now
I want to sort date column in gridjs and i am displaying date in mm/dd/yyyy format
365 views Asked by Srini At
1
I had the same problem. The date from an API was in RFC3339 format, and i wanted to output german format while maintaining sorting ability.
I used a combination of a custom sorter and a custom formatter.
Here is my formatting function:
I converted it with the help of
toLocaleString(adjust to your needs).My comparing function is pretty simple:
With gridjs, you can use both functions as noted here: