headerCellRightClick

fires on right click on a grid header cell

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

Parameters

columnobjectan object with a column configuration
eEventa native event object

Example

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

Related samples

Back to top