Tooltip for fullcalendar in year view

前端 未结 5 939
一生所求
一生所求 2020-12-08 05:35

I want to add tooltip for the fullcalendar in year view. I tried with the below one but it added tooltip to month view. I tried with google but did not find anything related

5条回答
  •  情话喂你
    2020-12-08 05:58

    You can use the html title attribute without any tooltip lib :

    $('#calendar').fullCalendar({
        events: [
            {
                title: 'My Event',
                start: '2014-01-01',
                tooltip: 'This is a cool event'
            }
            // more events here
        ],
        eventRender: function(event, element) {
            element.attr('title', event.tooltip);
        }
    });
    

提交回复
热议问题