Categories | Question details Back To List | ||
click over a row 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... Answer posted on Jun 05, 2007 11:42 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. Answer posted by radyno (Support) on Dec 08, 2014 02:09 To find more precise comments upon this issue, we can offer you read about ajax component and ghantt chart. |