headerCellMouseDown

fires on moving the mouse pointer over a grid header cell

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

Parameters

columnobjectan object with a column configuration
eEventa native event object

Example

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

Related samples

Back to top