Hi
I have an PowerApps application which checks some values on a form and does a calculation based upon variables. if the result of the calculations are NOT in in the prescribed range, throws up a Pop-Up screen and asks the user to confirm they want to continue even if the calculations are out of range. If the user clicks "OK" processing continues and the form is submitted. If the user clicks "Cancel", then processing stops and we go back to the main menu.
How do I suspend processing (ie not submit the form) until the user clicks on "OK" ?
Thanks
Nigel
Solved! Go to Solution.
Hello Nigel,
Here is what has worked for me in the exact same situation:
ButtonCancel OnSelect property: UpdateContext({DisplayPopUp: false}); Navigate(MainScreen,ScreenTransition.Cover)
ButtonOK: UpdateContext({DisplayPopUp: false}); SubmitForm(YourForm)
Does this help?
Hello Nigel,
Here is what has worked for me in the exact same situation:
ButtonCancel OnSelect property: UpdateContext({DisplayPopUp: false}); Navigate(MainScreen,ScreenTransition.Cover)
ButtonOK: UpdateContext({DisplayPopUp: false}); SubmitForm(YourForm)
Does this help?
User | Count |
---|---|
224 | |
100 | |
96 | |
57 | |
31 |
User | Count |
---|---|
283 | |
114 | |
110 | |
63 | |
59 |