keydown shift tab angular code example
Example: keydown shift tab angular
/**
* To handle tab key down
* @param $event object
*/
onTabPress($event) {
/*
Here you will press tab or shift+tab.
In both the cases this.isOptionListVisible will be set to false.
*/
if ($event.key === 'Tab') {
this.isOptionListVisible = false;
}
}