The eventHoverHandling property (string) determines the default action performed when the user hovers over an event.
Available since version 2022.4.5467.
Declaration
DayPilot.Queue.eventHoverHandlingPossible Values
"Bubble"- shows a hover callout. If you assign a custom DayPilot.Bubble object using the DayPilot.Queue.bubble property, that object is used to display the callout."Disabled"- disables the default hover action.
Default Value
"Bubble"Examples
JavaScript
const queue = new DayPilot.Queue("dp", {
eventHoverHandling: "Disabled",
// ...
});
queue.init();Angular
<daypilot-queue [config]="config"></daypilot-queue>config: DayPilot.QueueConfig = {
eventHoverHandling: "Disabled",
// ...
};React
<DayPilotQueue
eventHoverHandling="Disabled"
{/* ... */}
/>Vue
<DayPilotQueue
eventHoverHandling="Disabled"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot