是否可以阻止某些单元格在fullcalendar中添加事件?

时间:2015-01-13 12:33:12

标签: javascript jquery fullcalendar background-color

enter image description here

大家好!

我正在使用fullcalendar jquery plugin,我希望阻止某些单元格添加事件。 我找到了这个answer,但我不知道它是如何工作的以及maxDate是什么!

我想渲染就像上面的图片(带红色边框的白色块),但我没有找到解决方案。

我该怎么办?

1 个答案:

答案 0 :(得分:0)

我找到了这个解决方案

我为事件添加了一个新的阻止属性。然后,如果阻止为真,我会添加backgroundColor白色,并设置startend日期。

以下代码是一个简单的algorythm

if ( events.blocked ) {
    // action goes here
    // compare the date ( using moment ) enter by the user with the blocked start or end date
    // if the date is between start and end event, i display an alert
    // then reload the original events
}
相关问题