The eventHoverHandling property (string) determines the default action when the user hovers over an event.
DayPilot.Scheduler.eventHoverHandling"Bubble" - displays a callout when you hold the mouse cursor over an event in the JavaScript Scheduler. If you assign a custom DayPilot.Bubble object using the DayPilot.Scheduler.bubble property, that object is used to display the popover.
"Disabled" - disables the default hover action.
"Bubble"JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventHoverHandling: "Disabled",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventHoverHandling: "Disabled",
// ...
};React
<DayPilotScheduler
eventHoverHandling="Disabled"
{/* ... */}
/>Vue
<DayPilotScheduler
eventHoverHandling="Disabled"
<!-- ... -->
/>