Split Grid

Certified Associate Developer

Hi, I just wonder how the winner do this any idea?

community.appian.com/.../split-grid

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    This can be achieved using two grid fields separated by a section layout.

    First a!gridField()

    • Displays all rows with an index lower than the selected row.
    • Displays all rows if no selection is made.
    • Does not display if the selected row is at the first index.
    • Selectable set to true
    • Use selectionSaveInto to save into a local varaible for use in the a!sectionLayout()

    a!sectionLayout()

    • Displays additional information for the selected row in whatever format best fits your needs.
    • Does not display if no selection has been made.

    Second a!gridField()

    • Displays all rows with an index greater than the selected row.
    • Does not display if selected row is at the last index
    • Does not display if no selection is made.
    • Selectable set to true
    • Use selectionSaveInto to save into a local varaible for use in the a!sectionLayout()
Reply
  • 0
    Certified Senior Developer

    This can be achieved using two grid fields separated by a section layout.

    First a!gridField()

    • Displays all rows with an index lower than the selected row.
    • Displays all rows if no selection is made.
    • Does not display if the selected row is at the first index.
    • Selectable set to true
    • Use selectionSaveInto to save into a local varaible for use in the a!sectionLayout()

    a!sectionLayout()

    • Displays additional information for the selected row in whatever format best fits your needs.
    • Does not display if no selection has been made.

    Second a!gridField()

    • Displays all rows with an index greater than the selected row.
    • Does not display if selected row is at the last index
    • Does not display if no selection is made.
    • Selectable set to true
    • Use selectionSaveInto to save into a local varaible for use in the a!sectionLayout()
Children
No Data