Fullcalendar叠加事件

时间:2012-03-13 23:44:12

标签: javascript html css calendar fullcalendar

我使用的是FullCalendar库,我找不到如何强制FullCalendar不重叠事件(因为有些文字不能以其他方式显示)

这是我的日历:

Events

1 个答案:

答案 0 :(得分:1)

补丁非常简单:

diff --git a/src/agenda/AgendaEventRenderer.js b/src/agenda/AgendaEventRenderer.js
index 9e7243b..8b0ec63 100644
--- a/src/agenda/AgendaEventRenderer.js
+++ b/src/agenda/AgendaEventRenderer.js
@@ -182,7 +182,7 @@ function AgendaEventRenderer() {
            leftmost = colContentLeft(colI*dis + dit);
            availWidth = colContentRight(colI*dis + dit) - leftmost;
            availWidth = Math.min(availWidth-6, availWidth*.95); // TODO: move this to CSS
-           if (levelI) {
+           if (true) { // PATCH : Always render indented events
                // indented and thin
                outerWidth = availWidth / (levelI + forward + 1);
            }else{

现在看起来像这样:

Agenda