我在我的应用程序中使用fullcalendar
。这是我工作代码的一部分
$('#calendar').fullCalendar({
timeFormat: 'HH:mm',
views: {
week: {
titleFormat: 'D MMM YYYY',
columnFormat: 'ddd D'
},
day: {
titleFormat: 'D MMMM YYYY',
columnFormat: 'dddd D'
}
},
firstDay: 1,
nowIndicator: true,
weekNumberCalculation: 1,
slotLabelFormat: 'HH:mm',
slotLabelInterval: '00:10',
events: events_arr,
});
完美呈现日历。问题是,有没有办法只向用户突出显示可用的插槽?我的意思是如果今天10:00到11:00之间有活动,我需要在10:00到11:00之间显示插槽。
我参考了文档,但没有找到。如果有人知道如何突出显示可用的插槽,请分享您的想法。