Estoy trabajando en una aplicación front-end con Angular 5, y necesito tener un cuadro de búsqueda oculto, pero al hacer clic en un botón, el cuadro de búsqueda debería mostrarse y enfocarse.
He intentado algunas formas encontradas en StackOverflow con directiva o algo así, pero no puedo tener éxito.
Aquí está el código de ejemplo:
@Component({
selector: 'my-app',
template: `
<div>
<h2>Hello</h2>
</div>
<button (click) ="showSearch()">Show Search</button>
<p></p>
<form>
<div >
<input *ngIf="show" #search type="text" />
</div>
</form>
`,
})
export class App implements AfterViewInit {
@ViewChild('search') searchElement: ElementRef;
show: false;
name:string;
constructor() {
}
showSearch(){
this.show = !this.show;
this.searchElement.nativeElement.focus();
alert("focus");
}
ngAfterViewInit() {
this.firstNameElement.nativeElement.focus();
}
El cuadro de búsqueda no está configurado para enfocar.
¿Cómo puedo hacer eso?