For example consider the code:
<div *ngIf="-------NOTEMPTY-------">
Parent
<div *ngFor = 'let child of offsprings'>
<div name="c1" *ngIf="conditions[child.name]">
Child0
</div>
</div>
</div>
I want Parent division's ngIf
to be false
if all its child divisions' ngIf
are false
.
Note : It is not possible to me to collect all the child conditions in the ts file.