groupPanelItemMouseDown
fires before releasing the left mouse button when clicking on a group panel item
pro version only
The described functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) package.
groupPanelItemMouseDown: (id: string, events: MouseEvent | TouchEvent) => void;
Parameters:
The callback of the event is called with the following parameters:
id: string
- the id of a group panel itemevents: MouseEvent | TouchEvent
- a native HTML event object
Example
grid.events.on("groupPanelItemMouseDown", (id) => {
console.log("Mouse down on the group item:", id)
});