Angular2 Reactive Forms formControl for radio buttons
Should I do <input formControlName=”gender” type=”radio”> just like I do with text input’s? Yes. How does this work? Form control directives use a ControlValueAccessor directive to communicate with the native element. There are different types of ControlValueAccessors for each of the possible inputs. The correct one is chosen by the selector of the value accessor … Read more