DayPilot.Scheduler.doubleClickTimeout

The doubleClickTimeout property (number) specifies the maximum time, in milliseconds, allowed between two clicks for them to be recognized as a double-click in the JavaScript Scheduler.

Declaration

DayPilot.Scheduler.doubleClickTimeout

Default Value

300

Notes

This timeout affects event double click, time range double click, and row header double click handling.

Examples

JavaScript

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

Angular

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

React

<DayPilotScheduler
  doubleClickTimeout={500}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :doubleClickTimeout="500"
  <!-- ... -->
/>

See Also

Event Double Click [doc.daypilot.org]

Time Range Double Click [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript