Cancel button on interface

I have created  a form which includes cancel button now I want when user clicks on cancel button it goes to previous page (in my case it is record type).

how should I configure it?

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    In Appian a button has no specific behavior on its own. My typical implementation for a "Cancel"-button is like this: Enable submit, write the value "true" to a rule input named "cancel" and then check in process whether the user cancelled. If yes, just end the process. This way the user will return to where he came from. For a related action, this would be the record.

    Does this help?

    BTW, the search function returns multiple posts on how to do that.

Reply
  • 0
    Certified Lead Developer

    In Appian a button has no specific behavior on its own. My typical implementation for a "Cancel"-button is like this: Enable submit, write the value "true" to a rule input named "cancel" and then check in process whether the user cancelled. If yes, just end the process. This way the user will return to where he came from. For a related action, this would be the record.

    Does this help?

    BTW, the search function returns multiple posts on how to do that.

Children