headerCellMouseOver
fires on moving the mouse pointer over a grid header cell
[GridEvents.headerCellMouseOver]: (cell: IHeader, column: ICol, event: MouseEvent) => void;
Parameters:
The callback of the event is called with the following parameters:
cell: IHeader
- an object with a header cell configurationcolumn: ICol
- an object with a column configurationevent: MouseEvent
- a native HTML event object
Example
grid.events.on("headerCellMouseOver", (cell, column, event) => {
// your logic here
});
Related sample: Grid. Events