cellclick: String
Triggered once a user clicks the cell on the grid.
cell
– Cell Data Object. It contains the information about the clicked cell.
webdatarocks.on('cellclick', function(cell) { alert("Click on cell - row: " + cell.rowIndex + ", column: " + cell.columnIndex + ", label: " + cell.label); });
See in the demo on CodePen.