I want to disable a checkbox input, I mean, the user can not check de checkbox
there is an atribute to disable this? like [enable] or [disable]? or how can I fix this?
<input type="checkbox" name="isActive" [(ngModel)]="user.isActive">
any idea?
disabledattribute is probably what you're looking for...were you looking to bind that to an event?