Hi,
I'm using the DayPilotSchedulerComponent for Angular, and I'm showing cellbubble like this :
cellBubble: new DayPilot.Bubble({
animated: false,
showAfter: 0,
showLoadingLabel: false,
onLoad: (bubble: SchedulerCellBubble) => {
const cell = bubble.source;
if (this.isBookedCell(cell)) {
bubble.html = 'Ajouter une instruction';
}
}
})
The problem is when the user go to an other page (without daypilot scheduler), if a bubble was visible on the scheduler, it's still visible on the other page for few seconds.
Is there a way to destroy the scheduler/bubbles (when using DayPilotSchedulerComponent) ?