FullCalendar: Change agendaDay background-color

后端 未结 6 721
感情败类
感情败类 2020-12-29 13:09

While I have seen this question asked, I haven\'t seen the answer. I just want to be able to color the background-color of the TD from a certain ra

6条回答
  •  -上瘾入骨i
    2020-12-29 14:06

    since version 2.2, you can use Background Events

    $('#calendar').fullCalendar({
        defaultDate: '2014-11-10',
        defaultView: 'agendaWeek',
        events: [
            {
                start: '2014-11-10T10:00:00',
                end: '2014-11-10T16:00:00',
                rendering: 'background'
            }
        ]
    });
    

提交回复
热议问题