ダイアログを表示したいページがあります。
コード :
page1.xhtml
<p:commandLink value="Show Dialog" oncomplete="dlgWVar.show();"/>
<p:dialog widgetVar="dlgWVar"
width="800"
id="dialog"
position="top"
modal="true"
header="Test Dialog"
height="500">
<iframe src="page2.xhtml" width="100%" height="500px" style="border-width: 0PX;">
</iframe>
</p:dialog>
このダイアログに、page2.xhtml がリンクされている iFrame があります。
page2.xhtml
<p:commandButton value ="Close Dialog">
</p:commandButton>
page2.xhtml には commandButton が含まれています。commandButton をクリックした後、ダイアログを閉じる必要があります。
それを行う方法がわかりません。page1.xhtmlのダイアログを閉じるには、page2.xhtmlのcommandButtonに何を書けばいいですか?助けてください。
ありがとう。