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

Popular posts from this blog

\\u0000 cannot be converted to text error \\u0000 cannot be converted to text error

How to create @click on select menu in VueJS How to create @click on select menu in VueJS

Using Ts-Standard linting, JSDoc comment at beginning of file triggers "This rule requires the `strictNullChecks` compiler option" error Using Ts-Standard linting, JSDoc comment at beginning of file triggers "This rule requires the `strictNullChecks` compiler option" error