Fullcalendar在updateEvent上以及在拖放事件时重新呈现所有事件

Fullcalendar在updateEvent上以及在拖放事件时重新呈现所有事件,fullcalendar,Fullcalendar,有什么原因吗(或者我设置了错误的东西)?我认为这可能导致IE8的性能相当差 谢谢, B您试用过2.3版吗?为什么要使用非常旧的v1?嗨,我实际上使用的是基于v.1.6.4版本的带有年份视图fork()的fullcalendar,但在v2.3中也会发生同样的行为。下面是一个使用v2.3的提琴 var events = [{title: "fasdfdas", start: new Date()},{title: "event 2", start: new Date()}] $(".calen

有什么原因吗(或者我设置了错误的东西)?我认为这可能导致IE8的性能相当差

谢谢,
B

您试用过2.3版吗?为什么要使用非常旧的v1?嗨,我实际上使用的是基于v.1.6.4版本的带有年份视图fork()的fullcalendar,但在v2.3中也会发生同样的行为。下面是一个使用v2.3的提琴
 var events = [{title: "fasdfdas", start: new Date()},{title: "event 2", start: new Date()}]

$(".calendar").fullCalendar({
    editable: true,
    selectable: true,
    eventRender: function(event, element){
        console.log("rendering" +event.title);
    }
});
$(".calendar").fullCalendar("renderEvent", events[0]);
$(".calendar").fullCalendar("renderEvent", events[1]);
console.log("loaded");
$(".calendar").fullCalendar("updateEvent", events[0]);