onEventCollision Event

Parameters:

  • ev - event which creates collision
  • evs - collection of events, which already occupies the same time-slot
  scheduler.attachEvent("onEventCollision", function (ev, evs){
       //any custom logic here
  });

Event is called when user attepts to create event ( or modify some existing event ) inside already occupied time slot.

Returning false from event will allow collision situation.