Skip to main content

blockHandleMouseDown

pro version only

This functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) package.

triggered when clicking on the selection handle

Usage

blockHandleMouseDown: (event: MouseEvent | TouchEvent) => void;

Parameters:

The callback of the event is called with the following parameter:

  • event - the browser event: MouseEvent or TouchEvent

Example

grid.block.events.on("blockHandleMouseDown", (event) => {
console.log("Handle clicked:", event.type);
});

Change log:

added in v9.2