FullCalendar渲染月视图中的背景颜色

时间:2015-06-11 16:33:42

标签: jquery fullcalendar

我使用以下方式将新事件放入我的日历中:

$.each(daten.variable, function(i, v){
    var newEvent = new Object();
    //
    newEvent.typ = 'Abwesenheit';
    newEvent.start = von;
    newEvent.end = bis;
    newEvent.rendering = 'background';
    newEvent.backgroundColor = 'red';
    //
    $('#id').fullCalendar('renderEvent', newEvent, true);
})

这适用于日视图和周视图。但它不适用于月份视图。如何渲染月视图的背景事件?

1 个答案:

答案 0 :(得分:2)

当事件是allDay事件时,

.rendering = 'background';仅在月视图中显示。因此,请将此属性添加到对象中:

newEvent.allDay = true;

Here is a jsfiddle显示背景事件在月视图中有效。