I need in my delivery template change a date format from "dd/mm/yyy" to "dd < month write in words> yyyy"
Solved! Go to Solution.
<%= formatDate(new Date(), "%2D %Bl %4Y") %>
Displays 22 May 2017
this works in case of you are trying to format date from Date Object.
<%= formatDate(new Date(), "%2D %Bl %4Y") %>
Displays 22 May 2017
this works in case of you are trying to format date from Date Object.
Tnaks a lot, it's working! :-)
What's "%Bl" means? Can I change the language of month? For example instead May in english, I'd like write in french (mai) or spanish (mayo). Is it possible too?
Here is the manual, i was referring to
and Formatting
I am not sure, if you can use "Dictionary" strings for translating texts in deliveries. If you can't, you can define and call your language-specific JS function within delivery.
Views
Likes
Replies