fires when the mouse cursor is moved over the scheduler
id | string | the event's id |
e | Event | a native event object |
scheduler.attachEvent("onMouseMove", function (id, e){
//any custom logic here
});
If the user moves the cursor over an event, the handler function takes the event's id, otherwise - null.
Back to top