如何在全日历中自定义带有不同日期和不同小时的周末日期

时间:2018-09-05 10:16:25

标签: javascript fullcalendar fullcalendar-scheduler fullcalendar-3

我想以逐行日期在月视图中显示日历,例如:今天日期 2018-sep-05 ,我想在日历中显示。

2018-9-05,
2018-9-12,
2018-9-19
2018-9-26,

就像我在周视图jsfidddle中所做的那样,
我想与平日视图jsfidddle2做同样的事情,但是,陶氏的问题就在这里,陶氏是3表示星期三, 我想显示5、12、19、26个具有相同 dow 且具有不同 timings 的日期。
我想在计时以下的所有内容都应该适合日历

sep05 07am - 09pm, 
sep12 08am - 14pm,
sep19 10am - 13pm,


是他们制作的任何方式还是任何技巧。

     var hiddenDaysObj = [0, 1, 2, 3, 4, 5, 6];
        hiddenDaysObj.splice(selDate.getDay(), 1);
  const calObj = {
          defaultView: 'settimana',
          defaultDate: this.cldDate,
          editable: true,
          selectable: true,
          eventLimit: true,
          allDaySlot: false,
          minTime: '07:00',
          maxTime: '22:00',
          slotDuration: '00:10:00',
          slotLabelInterval: '00:15:00',
          weekends: true,
          header: {
            left: '',
            center: '',
            right: '',
          },
          slotLabelFormat: [
            'h(:mm) a'
          ],
          viewRender: function (view, element) {
            const s = '<div class="appnt-pro-name"><h6>TIME</h6> </div>';
            element.find('.fc-axis:eq(1)').html(s);
          },

          views: {
            settimana: {
              type: 'agendaWeek',
              duration: {
                months: 1
              },
              title: 'agendaWeek',
              groupByResource: true,
              columnFormat: 'ddd M/D',
            },
          },
          resources: resources,
          events: events,
          select: select,
       hiddenDays: hiddenDaysObj,
          schedulerLicenseKey: 'GPL-My-Project-Is-Open-Source'

1 个答案:

答案 0 :(得分:0)

最后,我已经完成了此https://fullcalendar.io/docs/background-events的发布,并按了in事件中的日期和时间。我已经根据自己的情况了,谢谢@ADyson
这是示例finalresult jsfiddle

events.push({id:1,
color:"gray",
start:"2018-09-05T10:00",
end:"2018-09-05T19:00",
rendering:"inverse-background",
},{
id:1,
color:"gray",
start:"2018-09-12T08:00",
end:"2018-09-12T13:00",
rendering:"inverse-background",
});