Hi is there a way to prevent overlapping events in jQuery FullCalendar? Thanks in advance!

link|improve this question

20% accept rate
feedback

3 Answers

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(!(array[i].start >= event.end || array[i].end <= 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;
link|improve this answer
feedback

allowCalEventOverlap: [boolean | default: false] – Whether the calendar will allow events to overlap. Events will be moved or resized if necessary if they are dragged or resized to a location that overlaps another calendar event.

is that what you were looking for?

link|improve this answer
1  
I think this is for jQuery Week Calendar ;) It doesn't work with jQuery FullCalendar. – user267637 Mar 3 '10 at 8:37
haha yeah just figured the same thing, sorry. maybe your answer is in here; code.google.com/p/fullcalendar/issues/detail?id=218 – Eggie Mar 3 '10 at 8:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.