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