Hi,
I have Input widget of type time. And would like to display time #00:00:00# which we retrieve from Database as 12:00 AM
Is it possible? Without changing the the Input Widget to type of text.
Currently, it will be displayed as Blank instead of 12:00 AM
Hi @Yudi Gemi Sutanto Tjong,
Give Your input widget this attribute property.
show-default-value = True
And on after fetch Assign your value to input Widget.
Best regards,
Faiz Khan
Hi Faiz,
Thank you for the reply. It works as expected.
Hi @Yudi Gemi Sutanto Tjong!
In Reactive and Mobile Applications, when you are working on the Client-Side, it assumes the time format of the client (and not of the Server). In this case, it is directly related to your browser.
If you have a time saved in the DB and want to display it in an expression you can use the FormatDateTime:
FormatDateTime(DateTime,"hh:mm tt")
Hope this helps!Best regards,
Miguel Sousa