Skip to main content

cellDblClick

fires on double-click on a grid cell

cellDblClick: (row: object, col: object, e: MouseEvent) => void;

Parameters:

  • row: object - an object with a row configuration
  • col: object - an object with a column configuration
  • e: MouseEvent - a native HTML event object

Example

grid.events.on("cellDblClick", function(row,column,e){
// your logic here
});

Related sample: TreeGrid. Events