Hey,
I was trying to save date in a different format using the datepicker.
I tried to have the column like this:
id: 'date',
header: 'Date',
editor: {
type: "datepicker",
config: { format: "%d/%m/%Y" },
},
template: (value) => (dayjs(value).isValid() ? dayjs(value).format('YYYY-MM-DD') : ''),
width: 275,
However, it still stores as the following:
"2025-10-16T23:00:00.000Z"
Is there any way I could store as "YYYY-MM-DD"?
Many thanks,
Daniel F.