Data Grid sort by date? #2488
-
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @azhengtwilio, Here's a codesandbox showing how you'd do it: https://codesandbox.io/s/sortable-datetime-columns-datagrid-0wvcnm In general, dates are sortable in JS you just need to make sure the data is an actually |
Beta Was this translation helpful? Give feedback.
Hi @azhengtwilio,
Here's a codesandbox showing how you'd do it: https://codesandbox.io/s/sortable-datetime-columns-datagrid-0wvcnm
In general, dates are sortable in JS you just need to make sure the data is an actually
Date
object. If you look at theconstants.tsx
file you will see our data is using Date objects. During the render, I usetoString()
to display the string version, but you can use any native Date functions to display it however you like.