在Fullcalendar中添加加1小时的slotLabelFormat

时间:2018-10-20 07:33:55

标签: jquery fullcalendar

我正在使用fullcalendar并有此表

fullcalendar example

在左侧有几个小时

        function GenerateCalender(events) {
        $('#calender').fullCalendar('destroy');
        $('#calender').fullCalendar({
            height: 'auto',
            defaultView: 'agendaWeek',
            minTime: "10:00:00",
            maxTime: "24:00:00",
            columnFormat: 'DD' + ' - ' + 'dddd',
            slotDuration: "00:60:01",
            //slotLabelInterval: '01:00:00',
            viewSubSlotLabel: true,
            eventOverlap: false,
            slotLabelFormat: [
                'HH:00'
            ],
            eventAfterRender: function (event, element, view) {
                $(element).css('width', '123px');
            },
            allDaySlot: false,
            contentHeight: 741,
            //height: 741,
            timeFormat: 'h(:mm)a',
            header: {
                left: 'prev,next',
                center: 'title',
                right: 'today'
            },
         }

在slotLabelFormat中,我想显示两个小时,开始和结束,所以这些小时将显示为

10:00 - 11:00
11:00 - 12:00
12:00 - 13:00
13:00 - 14:00 etc...

但是我无法从完整的日历文档等中实现这一目标。

有什么办法可以做到这一点?

谢谢。

0 个答案:

没有答案