Good day all,
For a datepicker, I want to force a certain format and turn it into a text, using the following code:
Collect(
Collection,
{
Date: Text(DateTimeValue(I_Date, "en"), "m/d/yyyy", "en")
}
);
Now for most, including me, this works perfectly. I enter a date on the left and on the right appears the date in a gallery, displaying the collection.
However, one of my users struggles when entering dates with double digit months. For example, when she selects the date October 21st 2023, which shows in the date picker as '10/21/2023' (as it should), but then the date pops up in the gallery as '09/10/2024'.
I have tried changing the format to 'mm/dd/yyyy', but the app keeps behaving the same for her.
Does anyone know how to overcome this issue? It's a really tough one for me to solve, as I am unable to replicate it myself and therefore can't test through trial and error easily.