directive
The ControlValueAccessor
for writing a range value and listening to range input changes. The value accessor is used by the FormControlDirective
, FormControlName
, and NgModel
directives.
input[type=range][formControlName]
input[type=range][formControl]
input[type=range][ngModel]
The following example shows how to use a range input with a reactive form.
const ageControl = new FormControl();
<input type="range" [formControl]="ageControl">
© 2010–2020 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v10.angular.io/api/forms/RangeValueAccessor