The keyboardEnabled property (boolean) enables the built-in keyboard support in the Scheduler.
Declaration
DayPilot.Scheduler.keyboardEnabledDefault Value
falseExamples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
keyboardEnabled: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
keyboardEnabled: true,
// ...
};React
<DayPilotScheduler
keyboardEnabled={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:keyboardEnabled="true"
<!-- ... -->
/>See Also
Keyboard Support [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot