Date format conversion

0
Hi All, I am new to Mendix , just cannot work around how to format a date which is of string data type.I need to format it to ‘dd-mm-yy’.
asked
1 answers
0

If you need to create a string from a dateTime you can use: formatDateTime($YourDate, 'dd-MM-yyyy')

If you need to parse a dateTime from a string you can use: parseDateTime('01-01-1990', 'dd-MM-yyyy')

answered