Documentation

on_mouse_move

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

function on_mouse_move;

Example

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

See also

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;
Back to top