Fullcalendar with Twitter Bootstrap Popover

后端 未结 4 1522
暖寄归人
暖寄归人 2021-02-02 14:41

I am trying to get Fullcalendar working with twitter boostrap popovers.
if I click an event, i want to show some details in the popover.
So first added this lil snippet

4条回答
  •  渐次进展
    2021-02-02 15:31

    From version 2.3 bootstrap now has a "container" option for popovers which appends the popover to a specific element.

    just add {container:'body'} to append it to the body

    $this.popover({html:true,title:event.title,placement:'top',container:'body'}).popover('show');
    

提交回复
热议问题