The eventHoverHandling property (string) specifies the default action for hovering over an event in the JavaScript Calendar component.
DayPilot.Calendar.eventHoverHandling"Disabled" - no built-in hover action is performed.
"Bubble" - shows the event bubble configured using DayPilot.Calendar.bubble.
"Bubble"Use "Bubble" together with DayPilot.Calendar.bubble to display event details on hover.
If you want the bubble to open on click only, set DayPilot.Calendar.eventClickHandling to "Bubble" and set eventHoverHandling to "Disabled".
JavaScript
const calendar = new DayPilot.Calendar("dp", {
eventHoverHandling: "Disabled",
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
eventHoverHandling: "Disabled",
// ...
};React
<DayPilotCalendar
eventHoverHandling="Disabled"
{/* ... */}
/>Vue
<DayPilotCalendar
eventHoverHandling="Disabled"
<!-- ... -->
/>Event Bubble [doc.daypilot.org]