Questions tagged [zone]

If you have inquiries regarding zone.js, please note that this is not the appropriate place to ask about time zones (please use the timezone tag), DNS zones, or any other interpretations of the term "zone."

Angular's detectChanges function does not trigger the ngDoCheck method

When I run cdr.detectChanges() in a nested child component (Child1) which has a parent and another nested child component (Child2), only ngDoCheck is invoked in Child2. Why doesn't it invoke DoCheck in the current component (Child1) as well? How can I dete ...