Solution for FormArray controllers
फॉर्मएयर को प्रारंभिक बनाएँ बिल्डर
formInitilize() {
this.Form = this._formBuilder.group({
formArray: this._formBuilder.array([this.createForm()])
});
}
फॉर्म बनाएँ
createForm() {
return (this.Form = this._formBuilder.group({
convertodecimal: ['']
}));
}
प्रपत्र नियंत्रक में प्रपत्र मान सेट करें
setFormvalues() {
this.Form.setControl('formArray', this._formBuilder.array([]));
const control = <FormArray>this.resourceBalanceForm.controls['formArray'];
this.ListArrayValues.forEach((x) => {
control.push(this.buildForm(x));
});
}
private buildForm(x): FormGroup {
const bindvalues= this._formBuilder.group({
convertodecimal: x.ArrayCollection1? parseFloat(x.ArrayCollection1[0].name).toFixed(2) : '' // Option for array collection
// convertodecimal: x.number.toFixed(2) --- option for two decimal value
});
return bindvalues;
}