我正在使用jquery FullCalendar。
我已设置营业时间和默认视图“AgendaWeek”。
我遇到的问题是,如果我回去一周,整个日历都会变灰。 默认情况下,只有我当前登陆的当周才会在营业时间之间显示为灰色。
我怎样才能让工作时间重复几周?
感谢很多!
我的设置:
$calendar.fullCalendar({
lang: '{{ app.request.locale }}',
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
defaultView: 'agendaWeek',
businessHours:
{
start: '08:00',
end: '18:00',
dow: [1,2,3,4,5,6] // Monday is not a working day
},
timeFormat: 'H(:mm)',
editable: true,
allDayDefault: false,
timezone: 'Europe/Berlin',
firstDay: 1,
droppable: true
});