The eventHoverHandling property (string) specifies the default action when the user hovers over an event in the monthly calendar component.
Declaration
DayPilot.Month.eventHoverHandlingPossible Values
"Disabled"- no built-in hover action is performed."Bubble"- shows the built-in event hover bubble.
Default Value
"Bubble"Notes
The default "Bubble" value keeps the standard hover-based event details behavior enabled.
Examples
JavaScript
const month = new DayPilot.Month("dp", {
eventHoverHandling: "Disabled",
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
eventHoverHandling: "Disabled",
// ...
};React
<DayPilotMonth
eventHoverHandling="Disabled"
{/* ... */}
/>Vue
<DayPilotMonth
eventHoverHandling="Disabled"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot