Search code examples
angulartypescriptwebangular-cli-v9

Angular 9: how to focus in mat-input when key press anykey


How to focus in mat-input when key press any key on keyboard.

have tried:

@HostListener('document:keydown', ['this.search.nativeElement.focus()'])

Solution

  • Try this:

    @HostListener('document:keypress', ['$event'])
        handleKeyboardEvent(event: KeyboardEvent) {
            this.search.nativeElement.focus();
        }