Set focus on element

Edit 2022:
Read a more modern way with @Cichy’s answer below


Modify the show search method like this

showSearch(){
  this.show = !this.show;  
  setTimeout(()=>{ // this will make the execution after the above boolean has changed
    this.searchElement.nativeElement.focus();
  },0);  
}

Leave a Comment