0

私は Primefaces 3.4 を使用しています。私は Primefaces を初めて使用します。confirmdialog の終了時に 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 を使用しようとしましたが、エラーが発生しました。使用できる close イベント属性はありますか? ご意見をお聞かせください。

4

1 に答える 1