Is there a way to hide the popover element when dragging an event in fullcalendar, and then show the popover again after the dragging is stopped?
Here is the code I am currently using:
eventRender: function(event, elementos, resource, view) {
var start = $.fullCalendar.formatDate(event.start, "DD-MM-Y HH:mm");
var end = $.fullCalendar.formatDate(event.end, "DD-MM-Y HH:mm");
elementos.popover({
title: start + ' — ' + end,
content: event.title,
trigger: 'hover',
placement: 'top',
container: 'body'
});
}
When I try to resize or drag the event, this is what happens:
https://i.sstatic.net/04GVA.png
Any insights or suggestions are greatly appreciated. Thank you!