1

我已阅读文档http://arshaw.com/fullcalendar/docs/agenda/axisFormat/以在周视图中显示小时数。我的代码是:

$('#calendar').fullCalendar({
    axisFormat:'h(:mm)tt',
    ...
});

但我仍然看到基本日历 =(。


由于标题,我没有看到房子。我的标题是:

        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'month,basicWeek,basicDay'
        },

安藤现在是:

        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'month,agendaWeek,basicDay'
        },

我可以看到房子

4

3 回答 3

1

试试这个它会工作,它对我来说很好。

$('#calendar').fullCalendar({
        header: {
            left: 'prev,next today prevYear',
            center: 'title',
            right: 'nextYear month,agendaWeek,agendaDay'
        },
        axisFormat: 'H(:mm)',/*whatever format you want for axis */
        timeFormat: {
            agenda: 'H:mm{ - H:mm}'/*time format to be shown on event*/
        },

  });
于 2014-08-11T09:37:49.893 回答
0

axisFormat 选项仅指示它应如何在该议程视图中显示,要实际更改您需要使用changeView方法的视图

例如改变视图

$('#calendar').fullCalendar('changeView', 'agendaWeek')
于 2012-11-13T21:45:46.500 回答
0

你可以使用'agendaWeekDay'到标题>正确的参数来显示时间

    标题:{
            对:'agendaWeekDay'
        },
于 2019-06-05T07:26:01.017 回答