ダイアログ ボックスと 2 つのコマンド ボタンがあります。オプションをクリックしても、ダイアログ ボックスが消えません。以下はコードスニペットです。オプションを使用していconfirmation.hide()
ます。
<p:confirmDialog
message="Are you sure about deleting the substudyplan?"
id="confirmation"
header="Confirmation Deleting substudyplan" severity="alert"
appendToBody="TRUE" widgetVar="cd">
<p:commandButton value="Yes Sure"
actionListener="#{editBean.deleteSubStudyPlan(selectedRow)}"
update=":studyPlanEditForm"
oncomplete="confirmation.hide()" />
<p:commandButton value="Not Yet" onclick="confirmation.hide();"
type="button" />
</p:confirmDialog>