UI Collapse

Hi Appian User,

How Can I collapse the UI vertically?"

"i want collapse on the right and not upwards., how can we do that."

  Discussion posts and replies are publicly visible

Parents Reply Children
  • 0
    Certified Senior Developer
    in reply to rahulk9545

    a!localVariables(
    local!showSidePanel: false,
    a!sectionLayout(
    contents: {
    a!columnsLayout(
    columns: {
    a!columnLayout(
    contents: {
    a!textField(
    label: "Main Content Area",
    value: "This is the main area of the interface.",
    readOnly: true
    )
    }
    ),
    a!columnLayout(
    contents: {
    a!textField(
    label: "Collapsible Side Panel",
    value: "Details shown here can be hidden.",
    readOnly: true,
    showWhen: local!showSidePanel
    )
    }
    )
    }
    ),
    a!buttonLayout(
    primaryButtons: a!buttonWidget(
    label: if(local!showSidePanel, "Hide Details", "Show Details"),
    style: "SOLID",
    size: "SMALL",
    saveInto: {
    a!save(local!showSidePanel, not(local!showSidePanel))
    }
    )
    )
    }
    )
    )