I am using the following code to see the date value of variable {{:Tag}}. This shown with this Format 2020-03-27. But I want to have this as 27.03.2020. Could you please advise where to start or where can I find a similar code to have it formated?
<td class="tg-imwf" colspan="8">Abschlusstag: {{:Tag}}</td>
Thanks.
I am not familiar with jsRender but after briefly looking at the documentation, it looks like you can do this logic in the render method for the tag.
You can do this and it should work fine:
value.split('-').reverse().join(".")
EDIT: If you would like for me to help you solve the render method fully, just copy paste the pertinent code and I'll knock it out for you.