4

我的 jsf xhtml 页面中有以下内容:

<h:body>
 <ui:define name="metadata">
 <f:metadata>
  <f:viewParam name="dummy"/>
  <f:event type="preRenderView" listener="#{bean.getDataMethod}"/>
  <f:attribute name="param1" value="${param.param1}"></f:attribute>
  <f:attribute name="param2" value="${param.param2}"></f:attribute>
 </f:metadata>
 </ui:define>

 <p:dialog header="Modify" widgetVar="modDialog" height="650" width="1500" resizable="false" showEffect="explode" modal="true" draggable="false" hideEffect="explode">
  <p:panel id="modifyPanel">
   <c:if test="#{null != bean.databean}">
    <ui:include src="modifyData.xhtml"></ui:include>
   </c:if>
  </p:panel>
 </p:dialog>
</h:body>

我需要在 preRenderView 执行后显示模态对话框。而且,我还需要确保所有数据都将显示在模态对话框中。

4

1 回答 1

12

只需将其visible属性设置为true.

<p:dialog ... visible="true">

如果您打算在 期间确定的条件下显示它preRenderView,那么只需以通常的方式将其绑定到布尔 bean 属性。

<p:dialog ... visible="#{bean.dialogVisible}">

也可以看看:

于 2013-06-24T13:41:15.423 回答