The eventHoverHandling property (string) determines the default action when the user hovers over an event.
Declaration
DayPilot.Scheduler.eventHoverHandlingPossible Values
"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.
Default Value
"Bubble"Examples
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot