Make the settime() changable

Hi all,
I’m trying to set the date from components always at a certain time with settime(), but seems like this function makes the components can not be changed, it always change back to the settime(). Is there anyway we can display at a certain time after reload the browser, but also changable?
Cheers all,

now(1000) will cause the binding to update every second.
now(0) will update once when the view is loaded.

Not with a simple expression, I suspect. Why do you need a delay?

1 Like
addHours(midnight(now(0)), 5)
1 Like

Cheers! I thought the settime is the one that keeps updating.Silly me!