I have a form that requires several fields contain information. Currently, if I leave a field blank and press "Submit" it goes to the success screen; however, when I go back to the form, the error messages are present.
Id like the "Submit" button to stop the user and make them enter in all of the required fields prior to submission.
Solved! Go to Solution.
No problem.
No, leave your submit OnSelect action as-is.
Change the DisplayMode property of your button to the formula I provided.
Consider setting the DisplayMode property of your Submit button to the following (replace control names with ones used in your app):
If(myForm.Valid, Edit, Disabled)
I hope this is helpful for you.
I just started using PowerApps last week - forgive me.
This is what I currently have on the "submit" button.
SubmitForm(myForm);Navigate(myForm2,Fade)
So I should change to
If(myForm.Valid, Edit, Disabled);SubmitForm(myForm);Navigate(myForm2,Fade)
Correct?
No problem.
No, leave your submit OnSelect action as-is.
Change the DisplayMode property of your button to the formula I provided.
Thank you! That worked perfectly. 😀
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
197 | |
47 | |
43 | |
41 | |
36 |
User | Count |
---|---|
285 | |
81 | |
80 | |
79 | |
71 |