Skip to main content
vempatir680997
November 26, 2022
Question

Help me for creating the interface like this

  • November 26, 2022
  • 5 replies
  • 0 views

i want to create the interface like this but i don't know how to create the interface with this type of format can anyone help me for this,

i want clickable links in the interface for that what i want component i want to use.

5 replies

November 26, 2022

Refer this pattern example for sample code

Tabs Patterns - Appian 22.3

vempatir680997
November 28, 2022

ok thanks 

November 26, 2022

Hi [mention:ec5065f0ca8845eeb4dc43351566d691:e9ed411860ed4f2ba0265705b8793d05]

Hope the below sample code is helpful

a!localVariables(
  local!selectedTab: 1,
  local!tabNames: {
    "Summary",
    "Application Details",
    "Offer Details",
    "Company Details",
    "Applicant Details",
    "Documents",
    "Workflow Items",
    "History Record"
  },
  a!formLayout(
    label: concat(
      user(loggedInUser(), "firstName"),
      " | ",
      user(loggedInUser(), "lastName")
    ),
    contents: {
      a!buttonArrayLayout(
        buttons: {
          a!forEach(
            items: local!tabNames,
            expression: a!buttonWidget(
              label: fv!item,
              saveInto: if(
                local!selectedTab = fv!index,
                {},
                a!save(local!selectedTab, fv!index)
              ),
              size: "SMALL",
              width: "MINIMIZE",
              style: if(
                local!selectedTab = fv!index,
                "PRIMARY",
                "LINK"
              )
            )
          )
        }
      ),
      a!richTextDisplayField(
        labelPosition: "COLLAPSED",
        value: a!richTextItem(
          text: concat(
            choose(
              local!selectedTab,
              "The contents of the First tab would go here",
              "The contents of the Second tab would go here",
              "The contents of the Third tab would go here",
              "The contents of the Fourth tab would go here",
              "The contents of the Fifth tab would go here",
              "The contents of the Sixth tab would go here",
              "The contents of the Seventh tab would go here",
              "The contents of the Eight tab would go here"
            )
          ),
          style: "EMPHASIS"
        ),
        align: "CENTER"
      )
    }
  )
)


Refer This Documentation (Example): Tabs Patterns - Appian 22.4

November 29, 2022
[deleted]
vempatir680997
November 29, 2022

Thanks for the help