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: 103906d5efe5d150a30d347f7f77369bf2a1389c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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>
<style scoped>

::ng-deep .cdk-global-overlay-wrapper, .cdk-overlay-container {
  z-index: 1000 !important;
}
</style>