cellDblClick
fires on double-click on a grid cell
cellDblClick: (row: object, column: object, event: MouseEvent) => void;
Parameters:
The callback of the event is called with the following parameters:
- row: object- an object with a row configuration
- column: object- an object with a column configuration
- event: MouseEvent- a native HTML event object
Example
grid.events.on("cellDblClick", (row, column, event) => {
    // your logic here
});
Related sample: Grid. Events