blob: fed8f8d7cdce47640ac5016c9d17c8501c388c12 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<h2 mat-dialog-title class="text-center">Enkodiranje svih kolona</h2>
<div mat-dialog-content class="mt-5 mb-4">
<p>Sve izabrane kolone biće enkodirane metodom:</p>
<div class="d-flex justify-content-center">
<form (keydown)="withEnterKey($event)">
<mat-form-field>
<mat-select matNativeControl [(value)]="selectedEncodingType" cdkFocusInitial>
<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>
</form>
</div>
</div>
<div mat-dialog-actions class="justify-content-center">
<button id="btnYes" mat-stroked-button color="basic" (click)="onYesClick()">Potvrdi</button>
<button id="btnNo" mat-stroked-button (click)="onNoClick()">Odustani</button>
</div>
|