Navigation from one interface to another interface ??

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

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Senior Developer
    in reply to shivappak0001

    In this case, you can configure a button called "Next" in the first interface and in button's saveinto parameter you can update the page id for other interfaces. So once user clicks on next button the page Id will change and then based on this page id you can show your other interface. see below structure and based on it design your interface

    a!localvariables(
    local!pageId:1,
    {
    if(
    local!pageId=1,
    rule!interface1,
    ruleInterface=2
    ),
    }
    )

Children