Skip to main content

footerCellMouseDown

fires on moving the mouse pointer over a grid footer cell

footerCellMouseDown: (col: object, e: MouseEvent & TouchEvent) => void;

Parameters:

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

Example

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