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

cellDblClick

fires on double-click on a grid cell

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

Example

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

Details

Related sample:  Grid events

Back to top