Documentation menu
cellclick
cellclick: String
Triggered once a user clicks the cell on the grid.
Data passed to the handler
cell
– Cell 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.