AEM Datepicker value format | Community
Skip to main content
ajinkayk6258253
Level 3
September 13, 2019

AEM Datepicker value format

  • September 13, 2019
  • 2 replies
  • 5742 views

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.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

Adobe Employee
September 13, 2019

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

Adobe Employee
September 13, 2019

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.