Fullcalendar with Twitter Bootstrap Popover

后端 未结 4 1483
暖寄归人
暖寄归人 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:25

    Append the popover to the calendar container to scroll the popover with the calendar.

                $(jsEvent.target).popover({
                    html: true,
                    container:'#calendar',
                    placement: 'right'
                });
    

提交回复
热议问题