The eventHoverHandling property (string) determines the default action performed when the user hovers over an event.
Available since version 2022.4.5467.
DayPilot.Queue.eventHoverHandling"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.
"Bubble"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"
<!-- ... -->
/>