how to block a page or display a message in after upload microflow in Filedropper Widget

0
I am using File dropper widget , in this widget i am calling a microflow after upload to compare and generate report. so while this process is undergoing i want to show user a progress bar that ‘report is generating’ so that user cannot perform any other action.
asked
1 answers
0

A simple approach which will solve your issue and give the user a better experience:

Comparing and generating report is a perfect background job. So if you execute your microflow not in front of the user (and block the app for the user), so let the user continue. See here: ExecuteMicroflowInBackground in Community Commons module (https://docs.mendix.com/appstore/modules/community-commons-function-library). If the result is ready, notify the user it’s ready.

answered