1 <h1 mat-dialog-title>Create Form Fields Group</h1>
2 <div style="height: 450px;" mat-dialog-content>
5 <input matInput [(ngModel)]="createGroupObj.name">
8 <mat-label>Select Form Fields</mat-label>
9 <mat-select multiple [(ngModel)]="createGroupObj.formFieldList">
10 <mat-option *ngFor="let item of data; let i = index;" value="{{item.id}}">{{item.name}}</mat-option>
14 <div style="align-items: right;" mat-dialog-actions>
15 <button mat-button (click)="onNoClick()">Close</button>
16 <button style="background-color: #006496; color: white;" mat-button [mat-dialog-close]="createGroupObj" cdkFocusInitial>Create</button>