0
我有一個PRIMEFACES對話框,其中我使用onCloseUpdate屬性在對話框關閉時重新渲染對話框的所有內容。問題是,當我關閉對話框,並(快速)單擊以再次打開它時,我看到onCloseUpdate尚未完成重新呈現對話框的內容,並且舊內容以半秒/秒的週期顯示。等待Ajax渲染(JSF)
這裏的命令鏈接,使對話框中可見:
<h:commandLink id="area1" onclick="dlg.show()">
...
</h:commandLink>
,和這裏的對話框:
<ppctu:dialog onCloseUpdate="... here is all the component ids from the dialog content ..." modal="true" widgetVar="dlg">
是否有某種方式來等待onCloseUpdate渲染來完成?
在此先感謝