FullCalendar 调度程序上的完整粘性标题

问题描述

这里有一个类似的问题 Sticky Header on Fullcalendar scheduler 但建议的答案不起作用。 FullCalendar 提供了 stickyHeaderDates (https://fullcalendar.io/docs/stickyHeaderDates),它在滚动时将日历顶部的日期标题固定到视口。我需要同样的日历工具栏。此功能已被提议 (https://github.com/fullcalendar/fullcalendar/issues/5357),但似乎不会在近期实施。

我试着用 CSS 来做实验

.fc-toolbar.fc-header-toolbar {
    position: sticky;
    top: 200px;
    z-index: 10;
}

.fc-head-container.fc-widget-header {
    position: sticky;
    top: 308px;
    z-index: 10;
    background: red;
}
.fc-timeline .fc-body .fc-scroller {
    height: 400px  !important;
}

但这只会使日历的工具按钮具有粘性,并使它们脱离图形上下文。有人能让我走上正轨吗?我有一个用于测试的代码笔:https://codepen.io/craftydlx/pen/RwaqbvL

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)