When I format a date to dd-MM-yyyy I get 31-03-2020 in my text input. <input name="TIMESTAMP" dmx-bind:value="var1.datetime.formatDate("dd-MM-yyyy")">
However, when I try ddMMyyy without the hyphen I just get ddMMyyyy entered. <input name="TIMESTAMP" dmx-bind:value="var1.datetime.formatDate("ddMMyyyy")">
Is this a limitation of the date format function or am I doing in incorrectly?
Did a bit of testing and it indeed didn’t work with ddMMyyyy. So I directly checked the formatter and fixed it, here is the updated version. Now you can use ddMMyyyyHHmmss which should be what you require.