Link Interface

Certified Associate Developer

Hello,

I would like to know why there is no such a link functionality as ProcessLink but which will works for Interface. To be able link to interface directly. 

What I want to discard is the creation of Report and than link to this report which will open the interface. 

  Discussion posts and replies are publicly visible

Parents Reply
  • Did you try the dynamic link? I still think that is the best way to approach this use case if you don't want a report link. Here's another example of how that could work:

    a!localVariables(
      local!currentInterface: 1,
      {
        a!linkField(
          links: a!dynamicLink(
            label: "Link to Interface 2",
            value: 2,
            saveInto: local!currentInterface
          )
        ),
        choose(
          local!currentInterface,
          
          /* Replace this with your initial interface */
          a!sectionLayout(
            label: "Interface 1"
          ),
          
          /* Replace this with the interface you want to link to */
          a!sectionLayout(
            label: "Interface 2"
          )
        )
      }
    )

Children
No Data