Hello,
I am trying to sort the date with sort feature inside the grid. But looks like it's not sorting for me based on the time also it's taking as a string.
If you let me how to perform sort on date column then that would be great!
I have added the screenshot and code snippet for the reference
const generateDate = () => {
const currDate = new Date();
const formatDateUS = currDate.toLocaleDateString("en-US");
console.log(formatDateUS);
return formatDateUS;
};