The eventSelectHandling property (string) specifies the default action performed when an event is selected.
Declaration
DayPilot.Queue.eventSelectHandlingPossible Values
"Update"- updates the selected state of the event."Disabled"- disables the default event selection action.
Default Value
"Update"Examples
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot