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
  • 0
    Certified Associate Developer

    Hi,

    a!sectionLayout(
    label: "Click to Expand/Collapse",
    contents: {
    a!richTextDisplayField(
    value: "Here are the details you can hide or show."
    )
    },
    isCollapsible: true, /* This enables the section to be collapsible */
    isInitiallyCollapsed: true /* This sets the default state as collapsed */
    )

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

  • 0
    Certified Associate 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))
    }
    )
    )
    }
    )
    )

Reply
  • 0
    Certified Associate 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))
    }
    )
    )
    }
    )
    )

Children
No Data