Skip to main content
May 18, 2022
Question

Navigation from one interface to another interface ??

  • May 18, 2022
  • 12 replies
  • 0 views

How to navigate from one interface to another interface ??. Can any one suggest how to do it??

    12 replies

    stewart.burchell
    May 18, 2022

    it depends on the context of what you're trying to achieve. Appian Records provide different "Views" that you can navigate between by clicking on the relevant tab. You can provide links to Appian Record Views from any other Interface. Conceptually these are just web pages that you are hopping between.

    If you are wanting to navigate between interfaces in the context of a process (i.e. to capture or edit some data) then you can achieve this in two different ways:

    1. you can implement different interfaces in the scope of a single User Input Task. SAIL code can let you show/hide any scope of your user interface, so you can build wizard-like flows in the same physical user interface
    2. you can also chain different User Input Tasks together in the same process flow. Chaining creates a synchronous experience for the User
    gopalk2865
    Participating Frequently
    May 18, 2022

    Hi, You can have tabs in your interface and you can configure other interfaces on click of these tabs. You can also use links to call other interfaces.

    May 18, 2022

    Can i get more information Please, on how to navigate to another interface based on button click using link as you mentioned ??

    My use case is simple i have two interfaces, first interface has button called submit . when user clicks on the button it  has to go for next interview. How to achieve this using links ??

    Please suggest..

    arulk0002
    May 19, 2022

    Hi,

    My opinion, I would approach process model.. sample in below.  When you click the submit button in the first interface (userInput task) it will trigger to the next interface (userInput task).

    May 19, 2022

    As I observe this discussion, if you are required to display second interface after clicking on submit button so that thing you can manage by process model. In the process model take your first interface in process start form then use another "user input task" for your next interface and move on further as per your use case. Don't forget to use activity chaining between them. I hope it will helpful for you.

    Happy Coding.

    May 19, 2022

    Thanks [mention:cc9bc328a9cd4fdcab4b559ca57bf5af:e9ed411860ed4f2ba0265705b8793d05]