Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.

AEM Datepicker value format

Avatar

Level 3

Hi All,

I'm using datepicker coral ui component in my component. but the data that bydefault it stores in "2019-09-13T10:08:21+00:00" format. but as per over requirement we need to save it in "2019-09-13T10:08:21Z" format. both formats are iso-8601 format. i have tried valueformat & displayformat property all in vain?? is there anything that im missing? or we need to write custom code to change the format.

2 Replies

Avatar

Employee

ajinkayk62582531​ perhaps overlay [1] and customize to whatever format you want to be displayed.

[1] /libs/cq/ui/widgets/source/ext/override/locale/ext-lang-cq.js

Avatar

Employee

I tried the valueFormat "YYYY-MM-DD[T]HH:mm:ss.SSS[Z]" which works in that it uses the "Z" in the saved value like this "2019-09-20T05:15:00.000Z". But when the ".SSS" is removed it does not work as you have noted (using "YYYY-MM-DD[T]HH:mm:ss[Z]" for valueFormat results in "2019-09-20T05:15:00.000-07:00").

If you can accept the milliseconds in the format, this may work you.