We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@Amil-Gaoul
Directive formControlName not working if placed in e-checkbox. The checkbox is changed visually unlike the value.
formControlName
@Component({ selector: 'app-form', template: ` <form [formGroup]="fg"> <e-checkbox formControlName="isActive">Is active</e-checkbox> </form> `, }) export class FormComponent implements OnInit { public fg = new FormGroup({ isActive: new FormControl(false, {updateOn: 'change'}), }); ngOnInit() { this.fg.get('isActive').valueChanges.subscribe(console.log); // never outputs anything } }
The text was updated successfully, but these errors were encountered:
fix/Angular formControl ignored in ECheckbox
988f10e
cft-group#356
No branches or pull requests
@Amil-Gaoul
Directive
formControlName
not working if placed in e-checkbox. The checkbox is changed visually unlike the value.The text was updated successfully, but these errors were encountered: