summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/form-fields/create-group.component.html
blob: 226f238ccc1447390573704478f9318777b75adb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<h1 mat-dialog-title>Create Form Fields Group</h1>
<div style="height: 450px;" mat-dialog-content>
  <p>Group Name</p>
  <mat-form-field>
    <input matInput [(ngModel)]="createGroupObj.name">
  </mat-form-field>
  <mat-form-field>
    <mat-label>Select Form Fields</mat-label>
    <mat-select  multiple [(ngModel)]="createGroupObj.formFieldList">
      <mat-option *ngFor="let item of data; let i = index;" value="{{item.id}}">{{item.name}}</mat-option>
    </mat-select>
  </mat-form-field>
</div>
<div style="align-items: right;" mat-dialog-actions>
  <button mat-button (click)="onNoClick()">Close</button>
  <button style="background-color: #006496; color: white;" mat-button [mat-dialog-close]="createGroupObj" cdkFocusInitial>Create</button>
</div>