我正在为投影仪创建预留空间,并且在开发时会卡在这里,每次拖动新事件时,它都不会在日历视图中创建新事件。我尝试提醒这些值,并正确检索了它,只是日历未更新。 Fullcalendar + Scheduler在Internet上的资源有限,因此我尝试在此处询问。任何人都知道缺少什么或应该做什么?
select: function(info)
{
this.title = prompt('Event Title:');
if (this.title) {
this.eventData = {
title: this.title,
start: info.start,
end: info.end,
resourceId: info.resource.id // Example of resource ID
};
$('#calendar').fullCalendar('renderEvent', this.eventData, true); // stick? = true
}
$('#calendar').fullCalendar('unselect');
alert('selected ' + info.start + ' to ' + info.endStr + 'wew ' + info.resource.id);
},
答案 0 :(得分:1)
calendar.addEvent({
id: NewEventID, resourceId: info.resource.id, start: info.startStr, end: info.endStr, title: Title2
});
这是我忘记做的事,然后使用calendar.refetchEvents();重新获取事件。问题解决了!
答案 1 :(得分:-1)
只需迁移到纯V4,删除V3语法并包含.addEvent函数。问题解决了!