FullCalendar事件的开始和结束时间范围?

时间:2018-08-02 17:56:38

标签: fullcalendar fullcalendar-scheduler

我正在将FullCalendar与Schedular插件一起使用,我需要在2个时间范围内显示自定义businssHour事件。即从12am到9am和5pm到11:59 pm。

是否可以在eventObject中发送时间范围。或者我需要为此创建两个单独的事件?

我不能使用默认的businessHours和逆背景渲染,因为它有一些限制。

现在我正在这样发送时间。但是需要发送起始和结束范围。

events:[
{
   id: event.id,
   start:'09:00',
   end: '17:00',
   rendering: 'background'


},
{
   id: event.id,
   start:'08:00',
   end: '14:00',
   rendering: 'background'


}

] 

0 个答案:

没有答案