How can I access the keyboard instance in Angular?
@ViewChild('scheduler') scheduler: DayPilotSchedulerComponent;
...
this.scheduler.control.keyboard; // keyboard doesn't exists in control
I then tried something like this, but I'm not sure if this is correct:
this.scheduler.control.events.focus(args.e);
For focusCell() I didn't find anything