DayPilot.Scheduler.eventTapAndHoldHandling

The eventTapAndHoldHandling property (string) specifies the action assigned to the tap-and-hold gesture on Scheduler events on touch devices in the JavaScript Scheduler.

Declaration

DayPilot.Scheduler.eventTapAndHoldHandling

Possible Values

Default Value

"Move"

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  eventTapAndHoldHandling: "ContextMenu",
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  eventTapAndHoldHandling: "ContextMenu",
  // ...
};

React

<DayPilotScheduler
  eventTapAndHoldHandling="ContextMenu"
  {/* ... */}
/>

Vue

<DayPilotScheduler
  eventTapAndHoldHandling="ContextMenu"
  <!-- ... -->
/>

See Also

Event Moving [doc.daypilot.org]

Event Context Menu [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript