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.
DayPilot.Scheduler.doubleClickTimeout300This timeout affects event double click, time range double click, and row header double click handling.
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"
<!-- ... -->
/>Event Double Click [doc.daypilot.org]
Time Range Double Click [doc.daypilot.org]