Javascript 使用eventLimit时,fullcalendar popover不够大

Javascript 使用eventLimit时,fullcalendar popover不够大,javascript,fullcalendar,Javascript,Fullcalendar,我有一个使用eventLimit功能的fullcalendar,但是有太多的事件,当我单击“更多”时,它会从日历上滚动下来,我看不到底部的事件 我需要让popover不在日历中,或者显示在日历底部。您可以向popover添加最大大小,然后将overflow-y设置为滚动: <style> .fc-more-popover{ max-height: 200px; overflow-y: scroll; } </style> .fc

我有一个使用
eventLimit
功能的
fullcalendar
,但是有太多的事件,当我单击“更多”时,它会从日历上滚动下来,我看不到底部的事件


我需要让popover不在日历中,或者显示在日历底部。

您可以向popover添加最大大小,然后将overflow-y设置为滚动:

<style>
   .fc-more-popover{
       max-height: 200px;
       overflow-y: scroll;
   }
</style>

.fc更多popover{
最大高度:200px;
溢出y:滚动;
}