Hi Munim,
Use a subject in your service, or use a route parameter.
@Inject({ provideIn: 'root' })
class CommService {
private sub = new Subject<any>();
public update$ = this.sub.asObservable();
public update(newVal) {
this.sub.next(newVal);
}
}
In your child, subscribe to update$, in your parent use the update method.
Regards
Sander
--
You received this message because you are subscribed to the Google Groups
"Angular and AngularJS discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.