Formatting datetime in DataGrid

7
How can I format a DateTime attribute in the DataGrid, i.e. instead of 8/19/2009 I want 19th August 2009.
asked
2 answers
9

There are numerous expressions you can use to fromat DateTime attributes. For your example, you will need something like 'formatDateTime($object/DateTime,'EEE, d MMM yyyy)'.

You will need to store this attribute in a separate string, or use a virtual attribute to present the DateTime in the grid.

More information about microflow expressions can be found here

More information about formating datetime fields can be found on the website of Java, which can be found here

answered
0

Thank you for replies. I very like this feature.

answered