You are building an interface that displays flight departure times. The data must update automatically every minute and without user interaction.
How should this be configured?
Query the data inside a local variable used to display the departure times. Set the refreshinterval to “1”.
Query the data inside a local variable used to display the departure times. Set the refreshAlways to “True”.
Add a one minute timer to the process model to query the data and refresh the interface.
Submit