我想将整个页面放在 PrimeFaces 库 UI 组件lightBox
中。
例如我有:
- Normal_page.xhtml
- Popup_page.xhtml
是否可以从 Normal_page.xhtml 启动 Popup_page.xhtml 并将其显示在 lightBox 内,以便 Popup_page 覆盖在 Normal_page 上?
ps
我曾经使用<p:dialog>
and来做到这一点<ui:include>
,就像这样:
<p:dialog widgetVar="myPopup"...>
<ui:include src="/Popup_page.xhtml"/>
</p:dialog>
和
<p:commandButton onclick="myPopup.show();"/>
但这似乎不适用于<p:lightBox>
.