完整的日历标题匹配周

  • 本文关键字:标题 日历 fullcalendar
  • 更新时间 :
  • 英文 :


我正在使用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')
    );
}

相关内容

  • 没有找到相关文章

最新更新