The keyboard.move() method moves the keyboard focus in the specified direction.
The target is resolved using the internal rules. It behaves the same way as if the user pressed an arrow key.
Available since 2021.3.5070.
DayPilot.Scheduler.keyboard.move(direction[, options]);direction ("left", "right", "up", or "down") - direction in which the focus should move
options.dontFireEvent (boolean) - if set to true, onKeyboardFocusChange and onKeyboardFocusChanged are not fired for this move
const dp = new DayPilot.Scheduler("dp", {
// ...
});
dp.init();
dp.keyboard.move("right");Keyboard [doc.daypilot.org]
DayPilot.Scheduler.keyboard.resetFocus()
DayPilot.Scheduler.keyboard.getFocus()
DayPilot.Scheduler.onKeyboardFocusChange