The doubleClickTimeout property (number) specifies the maximum number of milliseconds between two clicks that will still be recognized as a double-click.
Declaration
DayPilot.Calendar.doubleClickTimeoutDefault Value
300Notes
If you handle both single- and double-clicks, single-clicks will be delayed by this time.
Examples
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot