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">
registerOnChange() | |||
---|---|---|---|
|
fn | (_: number) => void |
void
© 2010–2021 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v12.angular.io/api/forms/RangeValueAccessor