fullcalendar - AgendaWeek的EventLimit

时间:2015-08-11 13:58:09

标签: fullcalendar

我正在尝试使用fullcalendar api实现agendaView。我想要的是:如果同一时期(今天下午2点至下午3点= 4个事件)有超过2个事件,它将显示2个事件加上" +2更多"。

所以我使用了以下代码:

# read the whole file into a variable
set fh [open "file"]
set contents [read $fh]
close $fh

# find the desired words
set elements [regexp -inline -all {\w+(?=\s*#\()} $contents]

它可以工作,但仅适用于allDayEvents ...不适用于具有结束日期的事件。 当我需要this

时,我得到的是this

但我只是想限制我的活动,有谁知道为什么我的代码不起作用?万分感谢

1 个答案:

答案 0 :(得分:2)

根据docs(强调我的):

  

对于议程视图中的全天部分,值为true   将事件数量限制为5。

它不支持限制日历议程部分的事件数量。

目前还不清楚这是如何起作用的。如果所有事件都处于完全相同的时间,那么这是一回事,但如何对事件进行分组:

Fullcalendar - lots of overlapping events