Skip to main content

cellMouseOver

fires on moving the mouse pointer over a grid cell

cellMouseOver: (row: object, col: object, e: MouseEvent) => void;

Parameters:

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

Example

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

Related sample: TreeGrid. Events