Tabs in Appian Interface

Is it possible to create tabs within an interface?  

 

Like the following:

 

 

(or)

 

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    Hey Apoorva,

    We can implement the tabs but not the exact way you have shown in the image

    Currently I have shown only two tabs, If you want you can include more.

    load(
    local!currentTab:1,
    with(
    local!finalTab: local!currentTab,
    a!formLayout(
    label: "Something",
    contents: {
    a!richTextDisplayField(
              value: {
                a!richTextItem(
                  text: "First Tab" & " ",
                  link: a!dynamicLink(
                    value: "1",
                    saveInto: local!tab
                  )
                )
                a!richTextItem(
                  text: "  | ",
                  style: "STRONG"
                ),
                a!richTextItem(
                  text: "Second Tab" & " ",
                  link: a!dynamicLink(
                    value: "2",
                    saveInto: local!tab
                  )
                )
              }
            ),
            if(local!currentTab=1,call your first interface,{}),
            if(local!currentTab=2,call your second interface,{})
            }
            )
            )
            )
            

Reply
  • 0
    Certified Lead Developer

    Hey Apoorva,

    We can implement the tabs but not the exact way you have shown in the image

    Currently I have shown only two tabs, If you want you can include more.

    load(
    local!currentTab:1,
    with(
    local!finalTab: local!currentTab,
    a!formLayout(
    label: "Something",
    contents: {
    a!richTextDisplayField(
              value: {
                a!richTextItem(
                  text: "First Tab" & " ",
                  link: a!dynamicLink(
                    value: "1",
                    saveInto: local!tab
                  )
                )
                a!richTextItem(
                  text: "  | ",
                  style: "STRONG"
                ),
                a!richTextItem(
                  text: "Second Tab" & " ",
                  link: a!dynamicLink(
                    value: "2",
                    saveInto: local!tab
                  )
                )
              }
            ),
            if(local!currentTab=1,call your first interface,{}),
            if(local!currentTab=2,call your second interface,{})
            }
            )
            )
            )
            

Children
No Data