Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Edit multiple rows at once

    Is it possible to edit multiple grid rows at once? Meaning, if I have a ListGrid with SelectionStyle.MULTIPLE, and from which I select multiple rows, if I create a new DynamicForm and call form.editSelectedData(grid), only the first selected row gets modified; would there be a way to edit the selection like how (for example) Microsoft Windows does? ie: same values are displayed as is, but different values for the same field appears as 'blank'; thus modifying any field will update all the selected rows (unchanged fields will not update the corresponding selected row fields, only the modified ones)

    Thanks.

    #2
    You can use ListGrid.getSelection() to get the array of ListGridRecords in the selection, but then you have to define your own form and method to update them all.

    Comment


      #3
      I see. This would be a good feature to add... no?

      Comment

      Working...
      X