fullcalendar活动多天

时间:2017-08-22 21:42:44

标签: javascript jquery fullcalendar

关于thisthis问题,我想知道,如果可以通过小提琴上的工作解决方案重做这个问题?似乎没有'isMultipleDay'或'multipleDayEvents'这样的东西。

$('#calendar').fullCalendar ({
    defaultView:'month', 
    defaultDate: '2014-11-20', 
    timezone: 'local',
    events: [ {
        title: "Birmingham Comic Con",
        start: new Date('2014-11-20T09:00'),
        end: new Date('2014-11-22T19:00'),
        id: 1, 
        isMultipleDay: true, 
        multipleDayEvents: [{
            start: new Date('2014-11-12T09:00'), 
            end: new Date('2014-11-15T19:00'), 
            description: 'Day 1'
            }, 
            {
            start: new Date('2014-11-16T09:00'),
            end: new Date('2014-11-18T19:00'),
            description: 'Day 2'
            }, 
            {
            start: new Date('2014-11-02T09:00'),
            end: new Date('2014-11-05T19:00'),
            description: 'Day 3'
            }
        ]
     }]
   })

function AddEvent(){
   $('#calendar').fullCalendar('renderEvent', ourEvent, true);
}

http://jsfiddle.net/duu0dx2t/1035/

1 个答案:

答案 0 :(得分:0)

感谢您对ADyson的支持。我已经构建了自己的转发器并使用多个日期复制了这些事件,并且可以按照需要运行:)