onMouseMove

fires when the mouse cursor is moved over the scheduler

void onMouseMove(string id,Event e);
idstringthe event's id
eEventa native event object

Example

scheduler.attachEvent("onMouseMove", function (id, e){
    //any custom logic here
});

Related samples

Details

If the user moves the cursor over an event, the handler function takes the event's id, otherwise - null.

Back to top