我的完整日历有 - "月|周|日"查看,我想删除或隐藏"周"和" Day"因为我们一直只使用"月"图。
你能告诉我怎么做吗?
答案 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));