add popover when event is clicked in react-big-calendar?

最后都变了- 提交于 2019-12-04 10:37:46

Can you try this:

<Popover id="popover-trigger-click-root-close" style={{opacity:1}}>

the problem is your fadeIn and fadeOut classes are not working properly so opacity never goes from 0 to 1.

this is not the perfect solution as you are only paiting over the problem but should get you in the right direction.

Jean-Philippe Bergeron

The problem seem to be with the calendar overflow and positions.

I added the following .less code

.rbc-month-row, .rbc-event-content {
  overflow: visible;
}
.rbc-row-segment {
  position: relative;
}

Example:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!