所以这里我有简单的确认对话
<p-confirmDialog header="Confirmation" icon="fa fa-question-circle" width="425" closeable="false" closeOnEscape="false" #cd>
<p-footer>
<button type="button" pButton icon="fa-close" label="No" (click)="cd.reject()"></button>
<button type="button" pButton icon="fa-check" label="Yes" (click)="cd.accept()"></button>
</p-footer>
</p-confirmDialog>
然而,由于我不知道的原因,对话框呈现关闭按钮并在按下esc键时关闭。为什么忽略closeable
和closeOnEscape
属性?只有width
和hight
属性适合我。
答案 0 :(得分:3)
将closeable="false" closeOnEscape="false"
替换为[closeable]="false" [closeOnEscape]="false"