Skip to main content

cellMouseDown

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

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

Parameters:

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

Example

grid.events.on("cellMouseDown", function(row,column,e){
// your logic here
});

Related sample: Grid. Events