Skip to content

Instantly share code, notes, and snippets.

@Wildhammer
Last active June 13, 2020 02:09
Show Gist options
  • Save Wildhammer/245018785901f88d57bb3dd7e4e485e5 to your computer and use it in GitHub Desktop.
Save Wildhammer/245018785901f88d57bb3dd7e4e485e5 to your computer and use it in GitHub Desktop.
_handleInput
_handleInput(control: FormControl, nextElement: HTMLInputElement): void {
this.autoFocusNext(control, nextElement);
this.onChange(this.value);
}
autoFocusNext(control: AbstractControl, nextElement: HTMLInputElement | null): void {
if (!control.errors && !!nextElement) this._focusMonitor.focusVia(nextElement, "program");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment