The doubleClickTimeout property (number) specifies the maximum number of milliseconds between two clicks that will still be recognized as a double-click.
DayPilot.Calendar.doubleClickTimeout300If you handle both single- and double-clicks, single-clicks will be delayed by this time.
JavaScript
const calendar = new DayPilot.Calendar("dp", {
doubleClickTimeout: 500,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
doubleClickTimeout: 500,
// ...
};React
<DayPilotCalendar
doubleClickTimeout={500}
{/* ... */}
/>Vue
<DayPilotCalendar
:doubleClickTimeout="500"
<!-- ... -->
/>