[Solved] How to Hide/Show the checkbox according to condition [closed]


In your template do something like this.

<div *ngIf="yourBoolean">
  your check boxes goes in here
</div>

you can show hide your check boxes by changing the value of yourBoolean.

hope this helps.

1

solved How to Hide/Show the checkbox according to condition [closed]