Date Format - How to format the date instead of 2019-04-26 00:00:01Z to 26 April 2019

Hi Team,

Event Module - {{this[‘StartTimeHHMM’]}} out put is 2019-04-26 00:00:01Z

But I am expecting format is 26 April 2019. Please guide me to solve this problem.

Hey @nehemc this is fairly straightforward. Use this link for reference:

Strftime

In your tag, add the following (for example):

{{this[‘StartTimeHHMM’] | date: '%e %B, %Y' }}

Just grab the date filter parameters from the link above.