FullCalendar上的qTip2工具提示显示日历下方的工具提示

时间:2017-11-08 02:17:11

标签: javascript fullcalendar tooltip qtip2

我已将qTip2用于工具提示。当我将鼠标悬停在FullCalendar中的事件上时它会起作用,但它会在日历下方显示工具提示。什么可能导致工具提示显示在不在日历内的日历下方?

我的代码如下所示:

eventRender(event, element, view) {

     console.log(event, element, view);
     element.qtip({
       prerender:true,
           content:{
             text:'<h4>'+event.title+'</h4>',
           position:{
             my:"top center",
             at:"bottom ccenter",

           },

        },

     });
   }

1 个答案:

答案 0 :(得分:0)

您可以使用工具提示(如果使用引导程序)而不是qtip

var tooltip =  event.title;
$(element).attr("data-original-title", tooltip)
$(element).tooltip({ container: "body" })