The eventTapAndHoldHandling property (string) specifies the action assigned to the tap-and-hold gesture on Scheduler events on touch devices in the JavaScript Scheduler.
DayPilot.Scheduler.eventTapAndHoldHandling"Move" - starts drag-and-drop event moving.
"ContextMenu" - opens the event context menu.
"Move"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"
<!-- ... -->
/>Event Moving [doc.daypilot.org]
Event Context Menu [doc.daypilot.org]