0

我正在使用 jQuery Week Calendar 插件制作一个 jquery 日历(请参阅https://github.com/themouette/jquery-week-calendar)。在我的日历中,安排与之前安排的活动重叠的活动应该是不可能的。实现这一点的最简单方法是什么?

4

1 回答 1

2

只需添加allowCalEventOverlap: false到日历的定义中:例如:

$('#calendar').weekCalendar({
     timeslotsPerHour: 2,
     timeslotHeigh: 3,
     hourLine: true,
     allowCalEventOverlap: false,
     ....
});

但我相信日历默认会这样做。

https://github.com/themouette/jquery-week-calendar/blob/master/jquery.weekcalendar.js第69行

于 2013-11-28T10:12:15.170 回答