groupPanelItemClick
fires on click on a group panel item
pro version only
The described functionality requires PRO version of the DHTMLX Grid (or DHTMLX Suite) package.
groupPanelItemClick: (id: string, events: Event) => void;
Parameters:
The callback of the event is called with the following parameters:
id: string
- the id of a group panel itemevents: Event
- a native event object
Example
grid.events.on("groupPanelItemClick", (id) => {
console.log("Click on the group item:", id)
});