footerCellMouseDown

fires on moving the mouse pointer over a grid footer cell

void footerCellMouseDown(object column,Event e);
columnobjectan object with a column configuration
eEventa native event object

Example

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

Details

Related sample:  Grid events

Back to top