I'm trying to add the appropriate action to my Check Mark button. Upon clicking, I want to submit the form then navigate the user to a "successfully submitted" landing page. For some reason, when they click on the Check Mark button, it takes them back to the Browse Screen. My fx formula currently is
fx formula syntax for submitting form and navigating to a success screen
There's a couple of things here.
Relocate the Navigate function to the form's OnSuccess property.
Forms have built-in error handing. By putting the Navigate function in the button's OnClick property, that error handling capability is undermined. The user should only be moved to the SuccessScreen if the form was submitted successfully.
Is the Navigate function failing to execute because of an error in the form?
When you click the Check Mark button, is the new record created in the datasource?
fx formula syntax for submitting form and navigating to a success screen
Do you have any functions in the OnSuccess action?
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.