formFieldsChange
Description
Example
onformFieldsChange(event: NgMatFormFieldChangeModal) {
//Other operations here...
console.log({controlName: event.controlName,
value: event.value, event: event.event});
}<ng-mat-forms [Fields]='ngMatFormFields'
[options]='ngMatFormsOptions'
(formFieldsChange)="onformFieldsChange($event)">
</ng-mat-forms>Last updated