Fullcalendar Scheduler,在创建新事件时不会更新日历

时间:2019-05-06 06:56:25

标签: fullcalendar fullcalendar-scheduler fullcalendar-4

我正在为投影仪创建预留空间,并且在开发时会卡在这里,每次拖动新事件时,它都不会在日历视图中创建新事件。我尝试提醒这些值,并正确检索了它,只是日历未更新。 Fullcalendar + Scheduler在Internet上的资源有限,因此我尝试在此处询问。任何人都知道缺少什么或应该做什么?enter image description here

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);
   },

2 个答案:

答案 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函数。问题解决了!