RangeValueAccessor

From Get docs
< @angular/formsAngular/docs/10/api/forms/rangevalueaccessor


RangeValueAccessor

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.

NgModules

Selectors

  • input[type=range][formControlName]
  • input[type=range][formControl]
  • input[type=range][ngModel]

Description

Using a range input with a reactive form

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