Hi - I’ve built an app that displays the current time in the title bar. The time is populated in the title bar content via a formula:
FORMAT_DATETIME_LOCAL(NOW(), "HH:mm")
However, once the page is rendered and the current time is displayed, the displayed time doesn’t update as time passes. So the system clock will move on, but the displayed time remains frozen to the time when the page loaded.
I know that component values update as underlying data changes, but NOW() doesn’t seem to trigger the same event.
How best to get the displayed time to continue to update once the page is mounted and has focus?
Thx!
Chris