Check documentation for the latest version of DHTMLX Pivot footerCellRightClick Pivot Docs

footerCellRightClick

fires on right click on a grid footer cell

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

Example

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

Details

Related sample:  Grid events

Back to top