Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!
The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.
After clicking the submit button, the data was submitted but the screen does not change, this can be a bit confusing for the user (to know if the form was submitted).
After click submit button,
1. How can I add a screen with a notice to indicate that the form was submitted successfully??
2. How can I add a button or link to send a new form or restar the form??
In the image bellow i click the submit button, the data was sent, but the screen doesnt change or clear the fields to sent a new form
Discussion posts and replies are publicly visible
You can show another user input task on the successful completion of the previous form by using activity chaining. Another way out is you can create a local variable and set the value as 1 and set the show when the functionality of the actual page and the confirmation page. on click of submit button you can change the value of that local variable to show another component to let the user know about the completion of the form.
a!localVariables( local!formToShow: 1, { a!richTextDisplayField( showWhen: local!formToShow=1, value: a!richTextItem( text: "Editable Form", style: "STRONG", size: "LARGE" ) ), a!richTextDisplayField( showWhen: local!formToShow=2, value: a!richTextItem( text: "Confirmation Form", style: "STRONG", size: "LARGE" ) ), a!buttonLayout( primaryButtons: { a!buttonWidget( showWhen: local!formToShow = 1, label: "Submit", saveInto: { a!save(local!formToShow, 2) } ), a!buttonWidget( showWhen: local!formToShow = 2, label: "Ok", saveInto: { a!save(local!formToShow, 1) } ) } ) } )
"Another way out is you can create a local variable and set the value as 1 and set the show when the functionality of the actual page and the confirmation page. on click of submit button you can change the value of that local variable to show another component to let the user know about the completion of the form."
Be careful here. This will NOT work. The user input task will not reevaluate on a successful submit and will not display your message.
Check this: appian.rocks/.../
Stefan, it is for the one if we are not using Process model. If we are using stand-alone interface in the site.