defaultView agendaWeek隐藏月标题

时间:2015-10-13 16:12:28

标签: jquery fullcalendar

我有一个使用插件全日历的日历。默认情况下,在表头(fc-widget-header)中显示当前月份(fc-day-header)。我想隐藏月份并仅显示一周中的某一天。

我找不到禁用月份的属性,我也需要删除该字符(/)。

$('#calendar').fullCalendar({
    header: {
        left: 'prev',
        center: 'title',
        right: 'next'
    },
    defaultView: 'agendaWeek',
    allDaySlot: false,
    hiddenDays: [0],        
    dayNamesShort:
        ['D', 'L', 'M', 'M', 'J', 'V', 'S'],            
    axisFormat: 'H:mm',
    timeFormat: {
        agenda: 'H:mm{ - H:mm}'
    },      
    editable: false,
    eventLimit: true // allow "more" link when too many events
});

enter image description here

谢谢,

1 个答案:

答案 0 :(得分:2)

我认为您正在搜索类似columnFormat的内容。

要达到预期的效果,请设置columnFormat这样的

columnFormat: 'ddd D'

这是 demo