Skip to main content

cellRightClick

fires on right click on a grid cell

cellRightClick: (row: object, col: object, e: MouseEvent) => void;

Parameters:

  • row: object - an object with a row configuration
  • column: object - an object with a column configuration
  • e: MouseEvent - a native HTML event object

Example

grid.events.on("cellRightClick", function(row,column,e){
// your logic here
});

Related sample: Grid. Events