The eventSelectHandling property (string) specifies the default action performed when an event is selected.
DayPilot.Queue.eventSelectHandling"Update" - updates the selected state of the event.
"Disabled" - disables the default event selection action.
"Update"JavaScript
const queue = new DayPilot.Queue("dp", {
eventSelectHandling: "Disabled",
// ...
});
queue.init();Angular
<daypilot-queue [config]="config"></daypilot-queue>config: DayPilot.QueueConfig = {
eventSelectHandling: "Disabled",
// ...
};React
<DayPilotQueue
eventSelectHandling="Disabled"
{/* ... */}
/>Vue
<DayPilotQueue
eventSelectHandling="Disabled"
<!-- ... -->
/>