refreshing page

0
how can we add timer to refresh the data grid on page
asked
2 answers
1

Hi,

 

Try the below. It will auto refresh if there is a change in the data source.

 

answered
1

Check if one of these options help:
 

In the datagrid general options set the refresh in seconds to your time you want it to be refreshed
 OR

  • Add a microflow that retrieves the data for the datagrid. This microflow should be triggered by a timer (You can use the microflow timer widget from the marketplace).
  • Drag the microflow timer on the page where the data grid is located.
  • Set the interval to the desired time (in seconds) between each refresh of the datagrid.
  • Use the call microflow action and select the microflow that you created in step 1.

You can customize the microflow to retrieve the data that you need and update the datagrid accordingly.

answered