Skip to main content

headerCellRightClick

fires on right click on a grid header cell

headerCellRightClick: (col: object, events: MouseEvent) => void;

Parameters:

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

Example

grid.events.on("headerCellRightClick", function(col,e){
// your logic here
});

Related sample: Grid. Events