We have updated WebDataRocks EULA, effective as of April 18, 2024. Learn more about what's changed.
Documentation menu

celldoubleclick

celldoubleclick: String

Triggered once a user double clicks the cell on the grid.

Data passed to the handler

cell – Cell Data Object. It contains information about the double-clicked cell.

Example

webdatarocks.on('celldoubleclick', function(cell) {
    alert("Double click on cell - row: " + cell.rowIndex +
        ", column: " + cell.columnIndex +
        ", label: " + cell.label);
});

See in the demo on CodePen.