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

前端 未结 10 2110
伪装坚强ぢ
伪装坚强ぢ 2020-12-01 03:47

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

10条回答
  •  南笙
    南笙 (楼主)
    2020-12-01 04:24

    just try this, works fine for me.... https://fullcalendar.io/docs/event_ui/eventOverlap/

    eventOverlap: function(stillEvent, movingEvent) {
        return stillEvent.allDay && movingEvent.allDay;
        }
    

提交回复
热议问题