我使用FullCalendar库,但是我找不到如何强制FullCalendar不叠加事件(因为否则无法看到某些文本)

这是我的日历:

最佳答案

补丁非常简单:

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{


现在看起来像这样:

关于javascript - 全日历叠加事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9693902/

10-16 12:57