繁体   English   中英

如何使用 scheduler.js 在 fullcalendar 中添加事件?

[英]How to add events in fullcalendar with scheduler.js?

我不知道如何在 fullcalendar scheduler.js 中添加事件,谁能帮帮我?

我可以使用 fullcalendar 添加事件,但没有有效的 scheduler.js。

当我将此代码添加到我的脚本时,事件不会添加

select: function(start, end) 
{
    this.title = prompt('Event Title:');
    this.eventData;
    if (this.title) {
        this.eventData = {
            title: this.title,
            start: start,
            end: end
        };
        $('#calendar').fullCalendar('renderEvent', this.eventData, true); // stick? = true
    }
    $('#calendar').fullCalendar('unselect');
},

您还需要加载资源并在事件中指定您的资源 ID。 所以如果你把它们放在一起,它就会起作用。 试试这个代码。

 select: function(start, end) 
    {
        this.title = prompt('Event Title:');
        this.eventData;
        if (this.title) {
            this.eventData = {
                title: this.title,
                start: start,
                end: end,
                resourceId:['ResourceID1'] // Example  of resource ID
            };
            $('#calendar').fullCalendar('getResources')// This loads the resources your events are associated with(you have toload your resources as well )
            $('#calendar').fullCalendar('renderEvent', this.eventData, true); // stick? = true
        }
        $('#calendar').fullCalendar('unselect');
    },

资源示例如下:

$('#calendar').fullCalendar({
header: {left: 'prev,next today', center: 'title', right: ''},
                    selectable: true,
allDayDefault: false,
unselectAuto: false,
editable: false,
slotLabelFormat:"HH:mm",
resources: [[id:'ResourceID1', title:"Just a title"],[id:'ResourceID2', title:"Just a title part II"]]
})

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM