I want a button to be disabled until a checkbox has been checked using a FormBuilder for Angular. I don\'t want to explicitly check the value of the checkbox and would prefe
Since Angular 2.3.1 you can use Validators#requiredTrue:
Component:
this.formGroup = this.formBuilder.group({ cb: [false, Validators.requiredTrue] });
Template:
Accept it Required Submit
STACKBLITZ DEMO