我正在使用fullcalendar
,并且我将日历配置为不包括周末:
$('#calendar').fullCalendar({
weekends: false,
然而,header
title
属性显示的日期范围从星期日到星期六。是否有办法改变标题,使日期范围也不包括周末?
找到这个github问题。我刚刚测试了最新的完整日历2.9.1,它工作。您必须将该函数与8091
行fullcalendar.js中的函数交换。
computeTitle: function () {
var startDate, endDate;
if (this.intervalUnit == 'month') {
startDate = this.intervalStart;
endDate = this.intervalEnd;
}
else {
startDate = this.start;
endDate = this.end;
}
return this.formatRange(
{ start: startDate, end: endDate },
this.opt('titleFormat') || this.computeTitleFormat(),
this.opt('titleRangeSeparator')
);
}