HI All,
I wanted to add popup after form processor has completed the processing.
On which event i should write the popup show hide logic.
Thanks & Regards,
Solved! Go to Solution.
Hi @Amol-Kavnekar,
Thanks for posting this question.
You should use the OnChange event for this.
Here is one way to do it:
1. Select the OnChange event for the Form Processor control.
2. The OnChange event will fire once an image is uploaded and then once the data is extracted. To only show the notification when the data is actually extracted, in my example below I check if the total field is empty. You could change it to any other field in your model. If its not empty, then it means the data has been extracted and I can show the notification.
If(!IsBlank(FormProcessor1.Fields.Total), Notify("Processing has been completed! 👍"))
Hope this helps!
Hi @Amol-Kavnekar,
Thanks for posting this question.
You should use the OnChange event for this.
Here is one way to do it:
1. Select the OnChange event for the Form Processor control.
2. The OnChange event will fire once an image is uploaded and then once the data is extracted. To only show the notification when the data is actually extracted, in my example below I check if the total field is empty. You could change it to any other field in your model. If its not empty, then it means the data has been extracted and I can show the notification.
If(!IsBlank(FormProcessor1.Fields.Total), Notify("Processing has been completed! 👍"))
Hope this helps!
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
199 | |
71 | |
50 | |
42 | |
30 |
User | Count |
---|---|
259 | |
124 | |
91 | |
88 | |
85 |