currentSelectingPositionList property

List<PlutoGridSelectingCellPosition> currentSelectingPositionList
inherited

Position list of currently selected. Only valid in PlutoGridSelectingMode.cell.

stateManager.currentSelectingPositionList.forEach((element) {
  final cellValue = stateManager.rows[element.rowIdx].cells[element.field].value;
});

Implementation

List<PlutoGridSelectingCellPosition> get currentSelectingPositionList;