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