I am currently developing a Material App using Angular 12.
The Form structure I have implemented is as follows:
<form [formGroup]="form" class="normal-form" (ngSubmit)="onSubmit()">
<mat-grid-list cols="2" rowHeight="300px">
<mat-grid-tile>
<div class="controles-container">
<input type="hidden" formControlName="Id">
<mat-label><strong>Active</strong></mat-label>
<mat-slide-toggle formControlName="IsActive"
[checked]="checked">
</mat-slide-toggle>
<textarea matInput hidden></textarea>
<mat-form-field>
<input formControlName="Name" matInput placeholder=" Notification Name" >
<mat-error>This field is mandatory</mat-error>
</mat-form-field>
<mat-form-field>
<mat-select formControlName="ProcessorName" placeholder="Processor Name">
<ng-container *ngFor="let processors of dataSourceProcessors">
<mat-option value="{{processors.Value}}">{{processors.Text}}</mat-option>
</ng-container>
</mat-select>
</mat-form-field>
</div>
</mat-grid-tile>
<mat-grid-tile>
<div class="controles-container">
<mat-label><strong>Channel</strong></mat-label>
<li *ngFor="let chanel of dataSourceChannelLevel">
<mat-checkbox id={{chanel.NotificationLogLevel.Id}} formControlName="Channel" (change)="onChangeEventFunc( $event)">
{{chanel.NotificationLogLevel.Name}}
</mat-checkbox>
</li>
<div class="button-row">
<button mat-raised-button color="warn" (click)="onClose()">Close</button>
<button mat-raised-button color="primary" type="submit" [disabled]="form.invalid">Create</button>
</div>
</div>
</mat-grid-tile>
</mat-grid-list>
</form>
In the component, I have initialized the following Form controls:
form:FormGroup=new FormGroup({
Id: new FormControl(null),
Name: new FormControl('',Validators.required),
IsActive: new FormControl(true),
ProcessorName: new FormControl(0),
Channel: new FormControl(''),
});
There are two buttons in the Form - 'Create' which triggers Form Submit, and 'Close' button...
The issue I am facing is that when I click on the Close button, both onClose() and onSubmit() functions are getting called simultaneously.
Can anyone help me identify what I might be missing?
Thank you!