Hi @JDeltree
I have a form where users input a start date and end date. When they click the Generate 1 button, a backend workflow is triggered to fetch and store employee data (Employee Email, Working Days, and Total Minutes) in the database.
The backend workflow may take around 5 seconds to complete as it creates entries for all employees in the database. I want the repeating group to display the data only after the backend workflow finishes. How can I ensure the repeating group waits for the workflow to complete before showing the employee data?
Here’s the process so far:
- User enters the start and end dates.
- Clicking Generate 1 triggers the backend workflow to create employee entries.
- I want to delay showing the data in the repeating group until after the backend workflow is fully completed and all entries are created in the database.
Is there a reliable way to detect when the backend workflow finishes so that the data can be shown without relying on a set delay?