Hello @lbj
For a straightforward solution, consider using a timer to periodically update your “now” variable every 1, 30, or 60 seconds, based on the level of precision you prefer for the display. If you don’t want to implement this on the client side, you might opt for setting it up within a service. This approach, however, necessitates an additional boolean property, such as “published,” in your datasource. This property should be marked true when the publishing date is on the current time within the scheduled service. This enables you to efficiently filter your datasource using the “published” property instead of the “now” variable. Alternatively, you could provide a manual refresh option through a button that allows users to update the “now” variable themselves, thereby refreshing the articles on demand.
I hope this helps! If you have further questions, feel free to ask.