Skip to main content

headerCellRightClick

fires on right click on a grid header cell

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

Parameters:

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

Example

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

Related sample: TreeGrid. Events