我正在使用 primefaces 3.4 ,我是 primefaces 的新手,我想在确认对话框关闭时通过 ajax 更新面板这是我的代码
<p:confirmDialog message="Are you sure?" header="Perform Action"
severity="alert" widgetVar="confirmation">
<p:commandButton value="Yes Sure"
action="#{granteeSelectionManager.confirm}" oncomplete="confirmation.hide()" immediate="true" />
<p:commandButton value="Not1 Yet"
action="#{granteeSelectionManager.cancelConfirm}" update="reportingPeriod"
oncomplete="confirmation.hide()" />
</p:confirmDialog>
尝试在 confirmdailog 中使用 p:ajax ,但它给出了错误,我可以使用任何关闭事件属性吗?请指教。