The Wayback Machine - https://web.archive.org/web/20250701010920/https://angular.dev/api/forms/CheckboxControlValueAccessor
    • Overview
@angular/forms

CheckboxControlValueAccessor

directive
stable

A ControlValueAccessor for writing a value and listening to changes on a checkbox input element.

API

  
    class CheckboxControlValueAccessor extends BuiltInControlValueAccessor implements ControlValueAccessor {}
  
  

Description

A ControlValueAccessor for writing a value and listening to changes on a checkbox input element.


Exported by

Usage Notes

Using a checkbox with a reactive form.

The following example shows how to use a checkbox with a reactive form.

const rememberLoginControl = new FormControl();
<input type="checkbox" [formControl]="rememberLoginControl">
Jump to details
HTTPS · web.archive.org
← Home