Hello, I’m running a Scheduled API WF on a list to create a thing in my backend. I want to let the user know if the process is already completed using a loading animation via the frontend.
This is what I’ve tried so far, but it’s not working. The Loading Element is not showing.
You need to know how many items that your WF will run/create (it can be dynamic)
Let’s say you are loading 10 items, this mean you will create 10 items too. So you can do a search for item created:count = Scheduled list items: count this mean it’s done
However, if you want to allow user to leave page and have a page that display the result of the process, you will need to create a DB items to store the request (can be a simple field with count field) and you can display in a page the list of request and use a progress bar or a count with do a search for created item:count = current cell request count. You may need some more information for the request to be able to match it with the created item list.