FullCalendar显示周活动,例如在''月"

时间:2015-05-14 19:57:02

标签: fullcalendar

我使用fullcalendar插件构建系统,我有一个问题。 当同一天有几个事件时,它在week view上显示的方式太混乱了。
以下是页面的实际图像:
enter image description here
我想知道是否有可能在月视图中将其更改为像它一样。如果有超过n个事件,则会显示more +n按钮。

 $('#agenda').fullCalendar({
    windowResize: function(view) {},
    editable: true,
    eventLimit: 3,
    eventOverlap: false,
    slotEventOverlap: false,
    height:800,
    allDaySlot: false,
    [... more code ...]
 });  

1 个答案:

答案 0 :(得分:3)

尝试这样..如果事件不存在,basicWeek视图将没有任何空格..

 $('#calendar').fullCalendar({
            header: {
                left: 'prev,next,today',
                center: 'title',
                right: 'month,basicWeek'
            },
            allDayDefault: false,
            slotDuration: '00:15:00',
            allDaySlot: true,
            defaultView: 'basicWeek' // basicWeek does what you need, either call the view or set as defaultView
 });

在我的应用中如何:

I'm listing events one by one in the Week view where no spaces is available