popup for full calendar in jquery

前端 未结 7 766
一生所求
一生所求 2021-01-01 04:10

I need to show a popup (balloon popup as in google calendar) while creating an event in the jquery full calendar.

Any best plugins for the popup which shows as ballo

7条回答
  •  耶瑟儿~
    2021-01-01 04:34

    The "balloon" plugin itself doesn't need to handle the click event, as fullcalender already provides a configured callback for that...

        $('#calendar').fullCalendar({
            eventClick: function(calEvent, jsEvent){
                // ... your code here ...
            }
        });
    

    If you are looking for tooltip style "balloons", Qtip as recommended is a good choice. You could create the tooltip on the fly with the eventClick function on an as-needed basis, perhaps fetching the contents of the tip from somewhere else.

提交回复
热议问题