on_dblclick
attaches a dblclick behavior for component items with the specified CSS class
let on_dblclick: EventHash
Example
Section titled “Example”grid = webix.grid(config);grid.on_dblclick.trash_icon_classname = (ev, id) => { this.remove(id);};
Details
Section titled “Details”- “on_dblclick” behavior is defined for component items rather than for the whole component
- Use the ‘onItemDblClick’ handler to attach function to item clicking regardless of the CSS class;
See also
Section titled “See also”Articles
API