Is it possible to do bulk update in editable grid

I am trying to do bulk update i.e. update more than one row at a time using editable grid. Please suggest how to do this

  Discussion posts and replies are publicly visible

Parents Reply Children
  • Hi,

    I am able to acheive that, posting sample code for other people's reference.

    selectionValue: local!selectedIndices,
    /* Flatten the selected values so the result is easier to work with */
    /* when the select/deselect all option is used in an editable grid */
    selectionSaveInto: {
    a!save(
    local!selectedIndices,
    a!flatten(save!value)
    ),
    a!save(
    local!selectedValues,
    local!employeeData.data[local!selectedIndices]
    )
    },
    selectable: true,