Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular how to get the multiple checkbox values?

I m using a checkbox in Angular to select more than one element and I'm trying to get the value of that checkbox for submitting.

Instead I'm getting the value those values as an array of true-s. That's what I've tried:

export class CreateSessionComponent implements OnInit {   form : FormGroup ;    constructor(private formBuilder: FormBuilder) {}    ngOnInit() {     this.form = this.formBuilder.group({       userdata :  new FormArray([         new FormControl('', Validators.required)       ])     })   } } 

userdata is a dynamic array populated from a database.

<div formArrayName="useremail; let k = index">   <div *ngFor="let data of userdata">     <div>       <input type="checkbox" name="useremail" formControlName ="{{k}}" [value]="data.email">{{data.email}}     </div>   </div> </div>  
like image 791
Arun Kumaresh Avatar asked Apr 15 '17 07:04

Arun Kumaresh


1 Answers

Since you have several values you want to use, you need to use an FormArray, since FormControl can only capture one value.

Start with declaring an empty formArray:

this.myForm = this.fb.group({   useremail: this.fb.array([]) }); 

Iterate the your emails, and watch for the change event and pass the respective email and event to a method onChange where you check if it's checked, then add the respective email to the formarray, if it's unchecked, remove the chosen email from the form array:

<div *ngFor="let data of emails">   <input type="checkbox" (change)="onChange(data.email, $event.target.checked)"> {{data.email}}<br> </div> 

And onChange:

onChange(email:string, isChecked: boolean) {   const emailFormArray = <FormArray>this.myForm.controls.useremail;    if(isChecked) {     emailFormArray.push(new FormControl(email));   } else {     let index = emailFormArray.controls.findIndex(x => x.value == email)     emailFormArray.removeAt(index);   } } 

Demo

like image 196
AT82 Avatar answered Sep 22 '22 11:09

AT82