17

我正在尝试让 Fullcalendar 与 twitter boostrap popovers 一起使用。
如果我单击一个事件,我想在弹出窗口中显示一些详细信息。
所以首先将这个 lil 片段添加到 Fullcalendar:

eventClick: function(event, jsEvent, view) {
        $this = $(this);
        $this.popover({html:true,title:event.title,placement:'top'}).popover('show');
        return false;            
    },

但现在我遇到了两个问题:

  1. Fullcalendar 位于具有溢出:隐藏或其他内容的 div 中,因为弹出框在 Fullcalendar 的边界上被剪切。我该如何解决?
  2. 与问题 2 类似,我想通过函数将弹出框放置在顶部、左侧、右侧或底部,具体取决于事件在 Fullcalendar 网格中的位置。我怎么能做这样的功能?

谢谢!

4

4 回答 4

20

从 2.3 版开始,bootstrap 现在有一个用于弹出框的“容器”选项,它将弹出框附加到特定元素。

只需添加{container:'body'}以将其附加到正文

$this.popover({html:true,title:event.title,placement:'top',container:'body'}).popover('show');
于 2013-04-03T13:05:22.643 回答
13

This code helped me

$('#calendar').fullCalendar({
    eventRender: function (event, element) {
        element.popover({
            title: event.name,
            placement: 'right',
            content: + '<br />Start: ' + event.starts_at + '<br />End: ' + event.ends_at + '<br />Description: ' + event.description,
        });
    }
});

bootstrap version - 2.3.2, full calendar - 1.6.4

taken from https://groups.google.com/forum/#!topic/twitter-bootstrap-stackoverflow/9pkC3_lodmY

于 2013-09-24T04:52:25.870 回答
4

将弹出框附加到日历容器以使用日历滚动弹出框。

            $(jsEvent.target).popover({
                html: true,
                container:'#calendar',
                placement: 'right'
            });
于 2015-08-18T09:31:52.773 回答
0

好几天 ;

        dayClick: function (date, jsEvent, view) {
            //return eventCreate(date, null, jsEvent, view);
            var CurrentDay = $(this);

            CurrentDay.popover({
                html: true,
                placement: 'auto',
                title: date.format(),
                container:'#calendar',
                content: function() {
                    setTimeout(function () {
                        CurrentDay.popover('hide');
                    }, 2000);
                    return $("#popover-day").html();
                }
            });
            CurrentDay.popover('toggle');
    },

对于事件;

        eventRender: function (event, element, view){
        var dStart = event.title
        element.popover({
            animation: true,
            placement: 'top',
            html: true,
            container: 'body',
            title: dStart,
            trigger: 'click',
            content: function() {
                setTimeout(function () {
                    element.popover('hide');
                }, 2000);
                return $('#popover-content').html();
            }
        });
    },

在您的 HTML 中;

<ul id="popover-content" class="list-group" style="display: none">
  <a href="#" id="Eventaaa" class="list-group-item" onclick="aaa();">aaa</a>
  <a href="#" id="Eventbbb" class="list-group-item" onclick="bbb();">bbb</a>
  <a href="#" id="Eventccc" class="list-group-item" onclick="ccc();">ccc</a>
</ul>

<ul id="popover-day" class="list-group" style="display: none">
  <a href="#" id="Dayaaa" class="list-group-item" onclick="fDayaaa();">aaa</a>
  <a href="#" id="Dayyyy" class="list-group-item" onclick="fDayyyy();">yyy</a>
  <a href="#" id="Dayxxx" class="list-group-item" onclick="fDayxxx();">xxx</a>
</ul>
于 2018-06-05T03:13:49.307 回答