Skip to content

on_mouse_move

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

let on_mouse_move: EventHash
webix.grid({
on_mouse_move:{
"webix_remove_upload":function(ev, id){
console.log("Danger area");
}
}
});
  • “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;

Articles

API