繁体   English   中英

Fullcalendar:如何更改月份的显示?

[英]Fullcalendar: How to change the display of the month?

日历效果很好:

但是需要能够带上迷你日历:

如何以这种形式修改日历? 我是通过eventRender等方法看到的,但是不太明白是怎么做的。

日历的主要区别在于“大”我们显示了事件列表,而在小日历中,当您单击特定日期时会出现“弹出窗口”。

尝试高度属性,请参阅http://fullcalendar.io/docs/display/height/

$('#calendar').fullCalendar({
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'list,month,agendaWeek,agendaDay,agendaList'
        },
        editable: true,
        selectable: true,
        height: 300,  // will reduce the total height of the calendar
        firstDay: 1
    });

其他尝试 --> 这就像魅力和简单

<div id="calendar" style="width:300px;height:300px"></div>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM