Hi, After selecting a range of cells, If we try to unselect few of them (by pressing ctrl and selecting the cells we want to unselect), it is still considering them in the selection. I need to unselect this value.
For example,
- Select a range of cells via keypad/mouse (let’s say A1: B5)
- Unselect one cell (say B1), by pressing ctrl and selecting B1
- Call the hot.getSelected() method and print in console
- It returns [[0, 0, 4, 1],
[0, 1, 0, 1]]
It considers B1 to be selected twice.
Here is my code;