Skip to main content

cellMouseOver

fires on moving the mouse pointer over a grid cell

cellMouseOver: (row: object, column: object, event: MouseEvent) => void;

Parameters:

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

Example

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

Related sample: Grid. Events