当使用eventLimit时,fullcalendar popover不够大

时间:2015-12-23 22:37:05

标签: javascript fullcalendar

我使用fullcalendar功能获得eventLimit,但有很多事件,当我点击“更多”时,它会滚动日历,我看不到底部。

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

1 个答案:

答案 0 :(得分:2)

您可以在弹出框中添加最大尺寸,然后将overflow-y设置为滚动:

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