我正在为投影仪创建预订,在开发过程中,我被困在这里,每次拖动新事件时,它都不会在日历视图中创建新事件。我尝试提醒这些值并正确检索它,只有日历没有更新。Fullcalendar + Scheduler 在互联网上的资源有限,所以我尝试在这里询问。任何人都知道缺少什么或应该做什么?
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);
},