attaches a dblclick behavior for component items with the specified CSS class.
webix.ui({
view:"list",
template:"#value# <div class='webix_remove_upload'>Del</div>"
onDblClick:{
"webix_remove_upload":function(ev, id){
this.remove(id);
}
}
});