标签: javascript fullcalendar
我使用fullcalendar功能获得eventLimit,但有很多事件,当我点击“更多”时,它会滚动日历,我看不到底部。
fullcalendar
eventLimit
我需要让popover不在日历中或显示在日历的底部。
答案 0 :(得分:2)
您可以在弹出框中添加最大尺寸,然后将overflow-y设置为滚动:
<style> .fc-more-popover{ max-height: 200px; overflow-y: scroll; } </style>