Tooltip in fullcalendar scheduler doesn't work Tooltip in fullcalendar scheduler doesn't work
I tried to add tooltips to fullcalendar-scheduler 5.8 but could not achieve this functionality.
In fullcalendar-scheduler template I added the "tooltip" and "popper" libraries and CSS who works with simple fullcalendar but no results. My template starting point was https://fullcalendar.io/docs/event-tooltip-demo
Tooltip template example image
On Javascript code I've used "EventDidMount" function because I understand is the correct and latest way to do it.
eventDidMount: function(info) {
var tooltip = new Tooltip(info.el, {
title: info.event.extendedProps.description,
placement: 'top',
trigger: 'hover',
container: 'body'
});
},
At other hand, when I try this with standard fullcalendar the tooltips are visible and appear as expected.
It's possible to add tooltips to premium fullcalendar? And if possible, where is my mistake, please?
You can see my example in Codepen...
https://codepen.io/angelbonet/pen/poeMOaW
from Stackoverflow
Comments
Post a Comment