Is there a way to prevent overlapping events in jQuery FullCalendar?

user267637 picture user267637 · Mar 3, 2010 · Viewed 30.7k times · Source

Is there a way to prevent overlapping events in jQuery FullCalendar?

Answer

ecruz picture ecruz · Jan 10, 2012

I made a function that checks whether the given event is overlapping other or not. Returns true if the event is overlapping other and false otherwise.

function isOverlapping(event){
    var array = calendar.fullCalendar('clientEvents');
    for(i in array){
        if(array[i].id != event.id){
            if(!(Date(array[i].start) >= Date(event.end) || Date(array[i].end) <= Date(event.start))){
                return true;
            }
        }
    }
    return false;
}

You can use it when dropping or resizing and event and if the event overlaps other use the revertFunc that is received in the eventDrop and eventResize callbacks or cancel the creation of an event in the select callback. In order to use it in the select callback create a dummie event:

var event = new Object();
event.start = start;
event.end = end;