Hi,
i want to show a given Date in an input.
i set the type to date.
I have tried 2 different Solutions so far:
set the text from the input to {{mydate}}
The mydate is a String "2018-04-04T22:00:00.000Z"set the text from the input to {{getMyDate()}}
GetMyDate() is a function:
var dateAsString = "2015-11-14T00:00:00.000+0100";
var dateAsObject = new Date(dateAsString);
//return just date to display
return dateAsObject.getDate();Thanks for your reply
Sebastian