Skip to main content

headerCellRightClick

fires on right click on a grid header cell

headerCellRightClick: (column: object, event: MouseEvent) => void;

Parameters:

The callback of the event is called with the following parameters:

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

Example

grid.events.on("headerCellRightClick", (column, event) => {
// your logic here
});

Related sample: TreeGrid. Events