I have a component questions-manager.component.html
like this:
<div>
<main>
<div>
<questions-component [title]="'title'" [id]="id" (changeStatus)="statusChange($event)"></questions-component>
<div>
<checklist-component [chId]="chId" (refreshChecklist)="refreshChecklist($event)"></checklist-component>
</div>
</div>
</main>
</div>
I want to refresh or re-render questions-component when I call refreshChecklist
.
I gave this: https://www.digitalocean.com/community/tutorials/angular-change-detection-strategy a try but this didn’t work.
What can I do here to achieve this?
New contributor
Cane23 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.