大家好!
我正在使用fullcalendar jquery plugin,我希望阻止某些单元格添加事件。 我找到了这个answer,但我不知道它是如何工作的以及maxDate是什么!
我想渲染就像上面的图片(带红色边框的白色块),但我没有找到解决方案。
我该怎么办?
答案 0 :(得分:0)
我找到了这个解决方案
我为事件添加了一个新的阻止属性。然后,如果阻止为真,我会添加backgroundColor
白色,并设置start
和end
日期。
以下代码是一个简单的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
}