Hi all,
I have a form with Data cards set as Required = True, and a submit button that is visable if the form is valid (all cards filled). If the form was successfully completed, and the submit button clicked, I had SubmitForm(Form); Navigate(ScreenSuccess)
This worked fine.
I wanted to add a "save draft" option, I followed Rezas video on how to do this here https://www.youtube.com/watch?v=y24AkK-OXy0.
My problem is that when the Submit button is clicked, the form always navigates to ScreenSuccess and the user doesn't see the required fields messages.
I can't work out from Reza's video how to do the navigation - e.g. navigate to ScreenSuccess if saved as draft, and stop navigation if the form is not complete (e.g. hide the submit button or whatever).
Seems like it should be pretty basic and I'm missing something. How can I do this?