FullCalendar从当前日期开始查看

时间:2016-03-04 21:52:11

标签: javascript jquery fullcalendar

我正在使用FullCalendar,我按如下方式设置默认视图:

defaultView: 'timelineYear'

问题是当我加载页面时,我开始查看当年1月1日的事件: enter image description here

实际上我想从当前日期开始。例如,如果今天是2016年8月1日,我加载页面时的视图应该是这样的:

enter image description here

有人可以帮助我吗?

2 个答案:

答案 0 :(得分:0)

此插件有一个awesome documentation,您可以在其中找到您正在寻找的内容here,也许hereMomentJS-Docs也可能会对您有所帮助。

$('#calendar').fullCalendar({
    defaultView: 'timelineYear',
    defaultDate: moment()
});

$('#calendar').fullCalendar({
    defaultView: 'timelineYear',
}).fullCalendar('today');

(均未经测试)

答案 1 :(得分:0)

解决这个问题很简单。我只需要学习一些FullCalendar文档。首先,我创建了一个自定义视图:

views: {
    customView: {
        type: 'timelineYear',
        duration: { days: 500 } // Or whatever value you want.
    }
}

然后,我将其设置为我的默认视图:

defaultView: 'customView'

所有这一切都需要让魔术发生!