Skip to main content
brindas358855
January 29, 2026
Question

Editable Grid - Selection

  • January 29, 2026
  • 2 replies
  • 0 views

I have a editable grid.  I have to select only one row at a time.  Based on the selected identifier, I am displaying another grid in the side.  How can I select only one row at a time?

    2 replies

    January 29, 2026

    Check if this thread can answer your queries - community.appian.com/.../139377

    harshas2775
    January 29, 2026

    Have a local variable which stores selection value. In selectionSaveInto directly save the index of the row selected in the local variable. Have the side grid configured such that it shows data as per the row index saved in local variable.

    How can I select only one row at a time?

    Have your selectionSaveInto something like the below

     selectionSaveInto: {
          a!save(local!selected,a!flatten(save!value)),
        a!save(
          target: local!selected,
          value: index(local!selected, count(local!selected), null)
    )},