Hello! Let’s say I’m selecting a row on pressing LMB (left mouse button). Then I inadvertently press RMB (right mouse button) on a random cell. As a result, the last row selection would be deselected. Is it possible to prevent deselection?
I’ve already understood how to prevent cell selection on pressing RMB, I did it like so:
afterOnCellMouseDown: (event, coords, td) => {
if(event.button == 2){
this.myInstance.deselectCell();
event.stopImmediatePropagation();
event.preventDefault();
}
}