是否可以显示超过7周



Using http://fullcalendar.io/

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

有人有例子吗?

您可以创建自定义视图。完整日历 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'
    }
  }
});

相关内容

  • 没有找到相关文章