p-verifyDialog не фокусируется - PullRequest
0 голосов
/ 23 января 2019

Всякий раз, когда я нажимаю на кнопку, открывается диалоговое окно, но весь экран перестает работать, и я не могу нажать на диалоговое окно.

.html файл

<p-confirmDialog header="Confirmation" icon="pi pi-exclamation-triangle"> 

<button type="text" (click)="confirm()" pButton icon="pi pi-check" 
label="Confirm"></button>

.ts file

constructor(private confirmationService: ConfirmationService) {}

confirm() {
this.confirmationService.confirm({
    message: 'Are you sure that you want to perform this action?',
    accept: () => {
        //Actual logic to perform a confirmation
    }
});
}

Нажмите здесь, чтобы увидеть, как диалоговое окнорендеринга

...