Skip to content

on_dblclick

attaches a dblclick behavior for component items with the specified CSS class

let on_dblclick: EventHash
grid = webix.grid(config);
grid.on_dblclick.trash_icon_classname = (ev, id) => {
this.remove(id);
};
  • “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;

Articles

API