on_mouse_move

attaches a mouse move behavior for component items with the specified CSS class

EventHash on_mouse_move;

Example

webix.protoUI({
    name:"mylist",
    on_mouse_move:{
        "webix_remove_upload":function(ev, id){
            webix.message("Danger area");
        }
    }
}, webix.ui.list);

Details
  • "on_mousemove" behavior is defined for component items rather than for the whole component
  • Use the 'onMouseMove' handler to attach function to item clicking regardless of the CSS class;
See also
Back to top
If you have not checked yet, be sure to visit site of our main product Webix web ui framework and page of javascript menu product.