是否可能显示超过7周?

时间:2016-02-17 19:36:22

标签: fullcalendar

使用http://fullcalendar.io/

是否可以在整月视图中显示7周或更长时间?

有人有例子吗?

1 个答案:

答案 0 :(得分:1)

您可以制作自定义视图。 Fullcalendar v2.4.0演示https://jsfiddle.net/ktLxrw0v/

$('#calendar').fullCalendar({
  header: {
    left: 'prev,next,today',
    center: 'title',
    right: 'basicWeek, month, nineWeek'
  },
  views: {
    nineWeek: {
      type: 'basicWeek',
      duration: {
        weeks: 9
      },
      buttonText: 'Nine Week'
    }
  }
});