Hi There
In our user case, we have to differentiate the “click” (of a single cell) and “selection” action.
So our thoughts were to do a check:
- we record the row/col index of the cell when the mouse is down (afterOnCellMouseDown)
- and at the moment the mouse is up from a cell, we get the row/ col index again, and compare it with the previous ones,
- if they are not equal, then it is not a click action.
However, it seems there isn’t call back to hook the ‘mouse up’ event, is it?
Or is there any other way to work this out?
BTW, I see there is an afterSelectionEnd, but it seems it is not exposing an event instance, so we can not use the event capability like preventDefault and stopImmediatePropagation