onDblClick

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

EventHash onDblClick;

Example

webix.ui({
    view:"list",
    template:"#value# <div class='webix_remove_upload'>Del</div>"
    onDblClick:{
        "webix_remove_upload":function(ev, id){
              this.remove(id);
        }
    }
});

Details
  • "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;
See also
Back to top