footerCellRightClick
fires on right click on a grid footer cell
footerCellRightClick: (column: object, event: MouseEvent) => void;
Parameters:
The callback of the event is called with the following parameters:
column: object
- an object with a column configurationevent: MouseEvent
- a native HTML event object
Example
grid.events.on("footerCellRightClick", (column, event) => {
// your logic here
});