python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Dropdown plus manual text field in angular form
I am beginner to angular and I have angular form in my application where i want to add dropdown field , if user entered value does not exist in dropdown then allow him to enter some new value and we g...

Shinichi Izumi
Votes: 0
Answers: 0
Create many forms in one component
I'm trying to create many forms in one component. I've tried to implement this with mat-tab-groups
<mat-tab-group>
<mat-tab label="form1">
<form>...</form>
&l...

user18277059
Votes: 0
Answers: 1
How to patch select box value inside nested reactive forms in angular?
User class is as below:
export class User {
name: string
details: Details;
}
Details class is as below:
export class Details {
country: Country;
major : Major;
}
Major class is as below:
export cl...
Aaron
Votes: 0
Answers: 1
Understanding Angular FormBuilder with Groups and ngModel data and how/if they can be used together?
I am running into some issues with trying to use FormBuilder in my Angular app and how I can set the default values in the form based on my ngModel data.
In my class, I have the following code:
form: ...
zeropsi
Votes: 0
Answers: 2