blob: 7ab92d0283e3af64515a3f2b055f9489193b63ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<h2 mat-dialog-title class="text-center">Nedostajuće vrednosti</h2>
<div mat-dialog-content class="mt-5 mb-4">
<form (keydown)="withEnterKey($event)">
<mat-radio-group [(ngModel)]="selectedMissingValuesOption" [ngModelOptions]="{standalone: true}">
<mat-radio-button [value]="NullValueOptions.DeleteColumns" checked>Obriši sve kolone koje sadrže nedostajuće vrednosti</mat-radio-button>
<mat-radio-button [value]="NullValueOptions.DeleteRows">Obriši sve redove koji sadrže nedostajuće vrednosti</mat-radio-button>
</mat-radio-group>
</form>
</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>
|