fullcalendar中只有月份视图(删除/隐藏“日”和“周”视图)

时间:2013-04-29 13:12:47

标签: fullcalendar

我的完整日历有 - "月|周|日&​​#34;查看,我想删除或隐藏"周"和" Day"因为我们一直只使用"月"图。

你能告诉我怎么做吗?

2 个答案:

答案 0 :(得分:23)

当你开始全日历时,不要包括agendayDay和agendaWeek。像

这样的东西
$('#calendar').fullCalendar({
    header: {
        left: 'prev,next',
        center: 'title',
        right: 'month'
    }
});

更新: 摆脱月份按钮:

$('#calendar').fullCalendar({
    header: {
        left: 'prev,next',
        center: 'title',
        right: ''
    }
});

答案 1 :(得分:-2)

对:false正在运行。

$('#list-button').on('click', function () { job.createNew(); });
$('#list-button').on('click', job.createNew.bind(job));