I would like to detect the value of change event to the input on form.component.ts. I would not like to call the function ex: (onChange) = "function($event.target.value)"
public form: FormGroup; constructor(private formBuilder: FormBuilder){ } private loadForm(){ this.form = this.formBuilder.group({ tipo: [null, Validators.required], nomeRazao: [null, Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(64)])], apelidoFantasia: [null, Validators.compose([Validators.required, Validators.minLength(3), Validators.maxLength(64)])], cpfCnpj: [null, Validators.compose([Validators.required, Validators.minLength(11), Validators.maxLength(14)])], rgIe: [null], contato: this.formBuilder.group({ email: [null], telefone: [null] }), endereco: this.formBuilder.group({ cep: [null, Validators.pattern('^([0-9]){5}([-])([0-9]){4}$')], uf: [null], cidade: [null], bairro: [null, Validators.required], logradouro: [null], complemento: [null], numero: [null, Validators.pattern('/^\d+$/')] }) }); } ngOnInit() { this.loadForm(); }
In Angular we have observables which subscribe to form value changes. what you have to do is, subscribe to the form instance and detect any changes to the form. Suppose you don't want to include save button on your form. whenever user change any thing in the form save data to the server.
Setting or Updating of Reactive Forms Form Control values can be done using both patchValue and setValue. However, it might be better to use patchValue in some instances. patchValue does not require all controls to be specified within the parameters in order to update/set the value of your Form Controls.
The FormBuilder service is an injectable provider that is provided with the reactive forms module. We will inject this dependency by adding it to the component constructor. File name : employeeDetails-editor.component.ts. 1constructor(private fb: FormBuilder) { } typescript.
You can subscribe to your form changes by using this :
this.form.valueChanges.subscribe(() => { if (this.registerForm.controls['yourControlName'].value === 'someValue') { // } });
For detecting changes in value of a particular field, 'valueChanges' event on that field can be subscribed, as shown below:
this.myForm.get('formcontrolname').valueChanges.subscribe(val => { this.message = val; });
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With