cellMouseOver

fires on moving the mouse pointer over a grid cell

void cellMouseOver(object row,object column,Event e){ ... };

Parameters

rowobjectan object with a row configuration
columnobjectan object with a column configuration
eEventa native event object

Example

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

Related samples

Back to top