禁用FullCalendar

时间:2017-09-03 10:24:35

标签: fullcalendar

我已经从日历的标题中删除了这一天。

我无法想象的是如何删除数字上的“链接”和禁用basicDay视图。

我只希望用户有月和周。

This is how my calendar looks like

This is the thing I want to disable

1 个答案:

答案 0 :(得分:1)

谢谢@ADyson

我将navLinks设置为false并修复它。

$('#calendar').fullCalendar({
    header: {
      left: 'prev,next today',
      center: 'title',
      right: 'month,basicWeek'
    },
    firstDay: 1,
    navLinks: false
});