fullcalendar with clickable popup on hover

后端 未结 8 2275
名媛妹妹
名媛妹妹 2020-12-13 11:12

I need a pop up on hover full calendar like this one.

Have tried full calendar with qtip but could not get clickable popup its disappers when mouse is out from the s

8条回答
  •  感情败类
    2020-12-13 11:22

    Use Bootstrap tooltip plugin http://getbootstrap.com/javascript/#tooltips . And then inside eventRender callback write following:

     eventRender: function(event, element) {
          $(element).tooltip({title: event.title});             
      }
    

    This will work

    enter image description here

提交回复
热议问题