In vDesigner 1.0, under what conditions should the 'Refresh' task be used as opposed to the 'Reload App Configuration' task?

Please explain the difference.

4 Likes

Reload App Config Task:
Reloads the entire application configuration without needing the user to close and reopen the mobile app. Use this task when there are updates to the app’s configuration (e.g., feature toggles, theming, backend URLs, etc.) that need to be applied dynamically.

  • users can continue using the app seamlessly while the new configuration is loaded in the background.

Refresh Task:
Refreshes a specific control (e.g., a button, input field, or chart) or a group of controls on the screen.
Use this task when you need to update UI elements after a data change, API response, or a user action – without refreshing the whole screen or app.

  • Can be applied at an individual control level.
  • Or at a group level for multiple related controls.
5 Likes