我正在使用jQuery Week Calendar插件创建一个jquery日历(参见https://github.com/themouette/jquery-week-calendar)。 在我的日历中,应该无法安排与先前安排的事件重叠的事件。实现这个的最简单方法是什么?
答案 0 :(得分: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行