在Fullcalendar中进行的重复活动



所以我在过去的两个星期里试图解决这个问题,并尝试了所有其他先前提出的答案。我仍然无法做到。

我正在尝试设置一个日历,其中重复事件在指定的日期范围内过滤。示例:"我的活动" - 每个星期四下午2:15 - 2017/06/01和2017/06/30。

我未能成功尝试了此链接上提出的解决方案:在Fullcalendar中的重复事件

在末端,我决定遵循这条路线:https://github.com/c-trimm/moment-recur

这是一个时刻。

请帮助!

我的JSON feed返回:

  [{
    "title":"my event",
    "start":"2017-06-01T14:15",
    "dow":"4",
    "recurrence":"moment().recur[{
                 start:"2017-06-01",
                 end:"2017-06-30"}]"
  }]

我的日历有效,除了它不会在星期四永远停止发布活动的事实。我不想手动复制活动。

<link rel="stylesheet" type="text/css" href="/fullcalendar.css">
    <script src='/jquery.min.js'></script>
    <script src='/moment.min.js'></script>
    <script src='/moment-recur.js'></script>
    <script src='/fullcalendar.js'></script>    
    <script>
        $(document).ready(function() {
            $('#calendar').fullCalendar({
                header: {
                left: 'prev,next today',
                center: 'title',
                right: 'month,listWeek,listDay'
                },
                validRange: function(nowDate) {
                        return {
                            start: nowDate.clone().subtract(2, 'months'),
                            end: nowDate.clone().add(2, 'months')
                        };
                    },
                // customize the button names,
                // otherwise they'd all just say "list"
                views: {
                listDay: { buttonText: 'Day' },
                listWeek: { buttonText: 'Week' },
                },
                hiddenDays: [ 5 ], // hide Fridays
                editable: true,
                eventLimit: true, // allow "more" link when too many events
                businessHours: [ // specify an array instead
                    {
                        dow: [ 1 ], // Monday,
                        start: '12:30', // 8am
                        end: '22:00' // 6pm
                    },
                    {
                        dow: [ 2, 3 ], // Tuesday, Wednesday
                        start: '9:30', // 8am
                        end: '22:00' // 6pm
                    },
                    {
                        dow: [ 4, ], // Thursday
                        start: '13:00', // 10am
                        end: '22:00' // 4pm
                    },
                    {
                        dow: [ 7 ], // Sunday
                        start: '11:00', // 10am
                        end: '18:30' // 4pm
                    }],
                events: 'my-event/feed',
       //THIS IS WHERE I GET STUCK!!!!!
                // I'm trying to implement this:
                eventRender: 
                recurrence = moment().recur({
                start: "01/01/2014",
                end: "01/01/2015"
               });
            });
        });
    </script>
    <div id='calendar'></div>

我相信我想将其写成一个函数,但没有mater我尝试的是制动日历或不返回任何结果。事先感谢大家!

以下是FullCalendar中重复事件的提琴手链接。

http://jsfiddle.net/slicedtoad/duuu0dx2t/1/

您需要按照示例指定的事件中指定 dow属性。

$('#calendar').fullCalendar({
    defaultDate: moment(),
    header: {
        left: 'prev,next today',
        center: 'title',
        right: 'month,agendaWeek,agendaDay'
    },
    defaultView: 'month',
    events: [{
        title:"My repeating event",
        start: '10:00', // a start time (10am in this example)
        end: '14:00', // an end time (6pm in this example)
        dow: [ 1, 4 ] // Repeat monday and thursday
    }],
});

相关内容

  • 没有找到相关文章

最新更新