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