DayPilot.Queue.eventSelectHandling

The eventSelectHandling property (string) specifies the default action performed when an event is selected.

Declaration

DayPilot.Queue.eventSelectHandling

Possible 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

DayPilot.Queue Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript