Posts by Mike Paiva • 13 points
2 posts
-
0
votes2
answers373
viewsA: Control div from a checked checkbox
Another solution would be: <div *ngFor="let item of listaProcesso"> <input type="checkbox" ng-model="item.value" (change)="isChecked($event)" (ngModelChange)="expression &&…
-
0
votes2
answers373
viewsQ: Control div from a checked checkbox
I have a checkbox list (*ngFor): <div *ngFor="let item of listaProcesso"> <input type="checkbox" ng-model="check" (ngModelChange)="expression && expression[item.name]= $event ? true…