RangeValueAccessor
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
选择器
input[type=range][formControlName]
input[type=range][formControl]
input[type=range][ngModel]
属性
说明
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">
方法
Sets the "value" property on the input element. |
Registers a function called when the control value changes. |
Registers a function called when the control is touched. |
Sets the "disabled" property on the range input element. |