Reputation: 381
Check box issue in Edge browser. When I console.log(), get True in edge where as false in chrome
<input type="checkbox" [ngModelOptions]="{standalone: true}"
class="setup- checkbox"id="addRoleDeleteChkBox"
[(ngModel)]="userRoleAll.isDeleteChecked"
(click)="selectAllRoles('delete')">
It works well in chrome as expected but not in edge
Upvotes: 1
Views: 38
Reputation: 1793
Use change instead of click
<input type="checkbox" [ngModelOptions]="{standalone: true}"
class="setup- checkbox"id="addRoleDeleteChkBox"
[(ngModel)]="userRoleAll.isDeleteChecked"
(change)="selectAllRoles('delete')">
Upvotes: 1