aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/encoding-dialog/encoding-dialog.component.html
blob: 7ba286cb599264157538a6908d3121ddb8f65d24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<h1 mat-dialog-title>Enkodiranje svih kolona</h1>
<div mat-dialog-content>
    <p>Odaberite tip enkodinga za sve kolone zajedno:</p>
    <mat-form-field>
        <mat-select matNativeControl [(value)]="selectedEncodingType">
            <mat-option *ngFor="let option of Object.keys(Encoding); let optionName of Object.values(Encoding)" [value]="option">
                {{ optionName }}
            </mat-option>
        </mat-select>
    </mat-form-field>
    <p>Da li ste sigurni u izbor?</p>
</div>
<div mat-dialog-actions>
    <button mat-button [mat-dialog-close]="selectedEncodingType" cdkFocusInitial>Da</button>
    <button mat-button (click)="onNoClick()">Odustani</button>
</div>