Frontend Display Differs from Database Storage

0
The frontend of the application I'm developing displays a datetime of 13:00, but it is stored as 06:00 in the database. How can i synchronize datetime between frontend and database?
asked
1 answers
0

Mendix always stores dates in the database as UTC.  You can have the correct date/time shown to the user by setting the Localize property to "Yes" on the attribute in the domain model.  Additionally, this will also be adjusted based on the timezone set for the logged in user.

 

image.png

answered