I m using checkbox in angular to select more than one data and im trying to get the value of check box on the form submit.Instead getting the value im getting value as true.I have tried the following code help me thanks in advance
export class CreatesessionComponent implements OnInit {
form : FormGroup ;
constructor(private formBuilder: FormBuilder) {
}
ngOnInit() {
this.form = this.formBuilder.group({
useremail : new FormArray([
new FormControl('',Validators.required)
])
});
}
}
userdata is dynamic array which i will get the from the database
<div class = "row" formArrayName="useremail; let k = index">
<div class="col-md-8 col-sm-5 col-xs-12 col-lg-8">
<div *ngFor="let data of userdata">
<div class="col-md-6">
<input type="checkbox" name="useremail" formControlName ="{{k}}" [value]="data.email">{{data.email}}
</div>
</div>
</div>
</div>
The problem with the @AJT_82 answer is that if you want to modify the model using form.reset() or or form.patchValue(), it won't work. To resolve these problems you need to implement ControlValueAccessor interface. Basically you need to create 2 components: group component which holds the model value and implements ControlValueAccessor and checkbox component, the actual checkbox. I have written a blog post with detailed explanation as well as created a plunker which demonstrate some examples.
Final usage:
Implementation of group component:
Checkbox component:
Child checkbox controls have reference to group component (@Host() decorator). When a checkbox is clicked toggleCheck() call addOrRemove() method on group component and if checkbox's value is already in the model, it is removed, otherwise it is added to the model.
You can get array of checked data:
to get all checked value
Since you have several values you want to use, you need to use an
FormArray
, sinceFormControl
can only capture one value.Start with declaring an empty formArray:
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'schecked
, then add the respective email to the formarray, if it's unchecked, remove the chosen email from the form array:And
onChange
:Demo
I have solved in two different ways One with simple checkbox array - mat-checkbox and the other with mat-selection-list.
Gist of the code in the post. At the value you can set all kind of combinations. In my case I've used concatination of id and description in order to init the form controls at the end from one source..
https://medium.com/@2bhere4u/angular-5-material-design-checkbox-array-reactive-forms-handle-3885dde366ca
My issue was with cleaning the checkbox array in a more simple example.. No time to waste .. Running along to the next tasks.. :)
I did this function at input for the load form auto select:
Full code:
Where
is my object and
auto check if checkboxes will be checked.