Is there any way to select a row clickin’ with the right mouse button without using lightnavigation?? in this momment all rows get selected only with left click…
This can be changed by updating code, but next workaround possible as well
grid.attahcEvent(“onRightClick”,function(rowId,cellIndex){
grid.selectCell(rowId,cellIndex);
});
This code will catch on right click event and select the necessary row and cell.