无法设置Fullcalendar背景事件颜色

时间:2015-07-13 07:50:20

标签: jquery fullcalendar

我无法为Fullcalendar(版本2.3.2)事件设置背景颜色。 我试过dayRender,color,backgroundColor没有成功。 可能是什么问题呢? 这是我的代码:

$('#calendar').fullCalendar({
    width: 750,
    height: 550,
    header: {
        left: '',
        center: 'title',
        right: ''
    },
    year: 2015,
    month: 6,
    date: 13,
    events: [{
        title: 'test',
        stato: 'NoResponseReceived',
        subject: 'test ',
        body: '',
        location: '',
        startdate: '14/7/2015 08:00:00',
        enddate: '14/7/2015 08:30:00',
        start: new Date(2015, 6, 14),
        end: new Date(2015, 6, 14),
        backgroundColor: '#ff0000'
    }],
    color: '#ff0000',
    dayRender: function(calEvent, cell, date) {
        cell.css('background-color', '#ff0000');
    },
    viewRender: function(view, element) {}
});

1 个答案:

答案 0 :(得分:1)

最终我的问题是我已经包含了fullcalendar.print.css。

文件中的后台事件设置为!important并覆盖 无论我放入我的代码中。