Skip to content

onDblClick

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

let onDblClick: EventHash
webix.grid({
onDblClick:{
"webix_remove_upload":function(ev, id){
this.remove(id);
}
}
});
  • “onDblClick” 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