The eventRightClickHandling property (string) sets the default action performed when the user right-clicks an event.
DayPilot.Queue.eventRightClickHandling"ContextMenu" - displays the context menu for the clicked event.
"Disabled" - disables the default event right-click action.
"Enabled" - right click is enable, with no default action.
"ContextMenu"JavaScript
const queue = new DayPilot.Queue("dp", {
eventRightClickHandling: "Disabled",
// ...
});
queue.init();Angular
<daypilot-queue [config]="config"></daypilot-queue>config: DayPilot.QueueConfig = {
eventRightClickHandling: "Disabled",
// ...
};React
<DayPilotQueue
eventRightClickHandling="Disabled"
{/* ... */}
/>Vue
<DayPilotQueue
eventRightClickHandling="Disabled"
<!-- ... -->
/>