226f238ccc1447390573704478f9318777b75adb
[portal/sdk.git] /
1 <h1 mat-dialog-title>Create Form Fields Group</h1>
2 <div style="height: 450px;" mat-dialog-content>
3   <p>Group Name</p>
4   <mat-form-field>
5     <input matInput [(ngModel)]="createGroupObj.name">
6   </mat-form-field>
7   <mat-form-field>
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>
11     </mat-select>
12   </mat-form-field>
13 </div>
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>
17 </div>