fullcalendar with clickable popup on hover

后端 未结 8 2300
名媛妹妹
名媛妹妹 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:32

    check this example. http://jsfiddle.net/craga89/N78hs/

    eventClick: function(data, event, view) {
                var content = '

    '+data.title+'

    ' + '

    Start: '+data.start+'
    ' + (data.end && '

    End: '+data.end+'

    ' || ''); tooltip.set({ 'content.text': content }) .reposition(event).show(event); }

    it works on click, not in hover, but you can adapt it to work in hover as well

提交回复
热议问题