Skip to main content

footerCellMouseDown

fires before releasing the left mouse button when clicking on a grid footer cell

[GridEvents.footerCellMouseDown]: (cell: IFooter, column: ICol, event: MouseEvent & TouchEvent) => void;

Parameters:

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

  • cell: IFooter - an object with a footer cell configuration
  • column: ICol - an object with a column configuration
  • event: MouseEvent & TouchEvent - a native HTML event object

Example

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