Hi is there a way to prevent overlapping events in jQuery FullCalendar? Thanks in advance!
|
feedback
|
|
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.
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:
| |||
|
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? | |||||||
feedback
|
|
See this other SO thread for a technique that worked for me. | |||
|
feedback
|