getCells()
returns an array with config objects of selected cells
getCells(): object[];
Returns:
An array with configuration objects of selected cells.
Example
const selectedCells = grid.selection.getCells();
// -> [{…}, {…}, {…}]
0: {row: {…}, column: {…}}
1: {row: {…}, column: {…}}
2: {row: {…}, column: {…}}