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

时间:2015-04-30 18:58:30

标签: javascript javascript-events calendar fullcalendar

日历效果很好

但需要能够带上迷你日历

如何修改此表单中的日历? 我通过eventRender和其他方法看到它,但不太明白如何。 日历中的主要区别在于"大"我们已经显示了事件列表,并且在小事件中显示了" popover"当你点击某一天时。

1 个答案:

答案 0 :(得分:0)

尝试身高属性,请参阅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>