Skip to content

onMouseMove

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

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