how do I use ui.resizer event

onMouseOut,onItemDblClick ect.

you can attach native html event handlers

//$$("myresizer").$view - root html node of view
webix.event($$("myresizer").$view, "dblclick", function(){
    //do something
});