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

cellclick

cellclick: String

Triggered once a user clicks the cell on the grid.

Data passed to the handler

cellCell Data Object. It contains the information about the clicked cell.

Example

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

See in the demo on CodePen.