将自定义月份按钮添加到FullCalendar

时间:2015-05-28 18:59:28

标签: jquery fullcalendar

我希望能够在日历标题中添加一行按钮,以显示一年中的月份,点击后,将带您到月份视图中的那个月。

我尝试过但未能使用视图添加此内容。在这个例子中,我希望日历跳到1月:

views: {
    january: {
            type: 'month',
            duration: { months: 1 },
            start  : '2016-01-01',
            end: '2016-01-31',
            buttonText: 'January'
            }
        },

任何想法?有更好的方法吗?

谢谢!

1 个答案:

答案 0 :(得分:2)

试试这个..

这将在页面加载时向右添加按钮。在准备好的功能中写下这个。

$('.fc-right').find('.fc-button-group').after("<input type='button' value='january' onclick='gotoJan();'");

然后在函数内部。

 function gotoJan() {
        $('#calendar').fullCalendar( 'gotoDate', '2014-01-01');
 }