À l'intérieur de votre modèle, en utilisant des variables/références de modèle :
<parent (click)="yourChild.hide()">
<child #yourChild></child>
</parent>
live-demo : https://stackblitz.com/edit/angular-so-3?file=src%2Fapp%2Fapp.component.html
OU
A l'intérieur de votre composant :
import { ..., ViewChild, ... } from '@angular/core';
// ...
export class ParentComponent {
@ViewChild('yourChild' /* #name or Type*/, {static: false}) child;
ngAfterViewInit() {
console.log('only after THIS EVENT "child" is usable!!');
this.child.hide();
}
}
A l'intérieur de votre composant (option 2) :
import { ..., ViewChild, ... } from '@angular/core';
import { ..., ChildComponent, ... } from '....';
// ...
export class ParentComponent {
@ViewChild(ChildComponent /* #name or Type*/, {static: false}) child;
ngAfterViewInit() {
console.log('only after THIS EVENT "child" is usable!!');
this.child.hide();
}
}
Voir les documents officiels : https://angular.io/docs/ts/latest/cookbook/component-communication.html#!#parent-to-view-child