Primefaces关闭模态而不隐藏对话框

时间:2018-10-03 19:02:57

标签: primefaces jsf-2 jsf-2.2

我在JavaEE 8上使用primefaces 6.2。
我有一个带有命令按钮的基本对话框,在该对话框上创建了一个模态。(不好意思的英语!)
我想关闭模式而不关闭基本对话框。
如何解决这个问题?


<p:dialog header="Basic Dialog" id="user-management" widgetVar="user-management" width="700px" height="300px" resizable="false">
        <p:toolbar>
            <f:facet name="left">
                <p:commandButton type="button" title="Add" icon="ui-icon-plus" onclick="PF('userDialog').show();"/>
            </f:facet>
        </p:toolbar>
        <p:spacer/>
        <p:dataTable value="#{userGroupBean.userSet}" var="user">
            // Show user information
        </p:dataTable>
    </p:dialog>

    <p:dialog header="User"     
              widgetVar="userDialog"
              closeOnEscape="true"
              resizable="true"
              modal="true"
              showEffect="fade"
              hideEffect="fade"
              height="auto"
              width="auto">
        <h:panelGrid columns="2">
          // Some inputs ...
        </h:panelGrid>
        <p:spacer/>
        <div class="dialog-footer">
            <p:commandButton value="Save"
                             oncomplete="PF('userDialog').hide();"
                             process="@form"
                             update="user-management"
                             action="#{userGroupBean.save}"/>
        </div>
    </p:dialog>     

1 个答案:

答案 0 :(得分:2)

基本对话框未“关闭”,而是通过update="user-management"更新的,因此从服务器返回的html放入html dom中,且对话框处于默认状态:关闭。您有几种选择:

  • 不更新对话框,而是通过添加例如来更新其内容(我的首选解决方案)。内部的面板并对其进行更新
  • 在bean中设置标志并使用visible="#{mybean.dialogIsVisibleFlag}"
  • 在ajax调用完成时执行PF('user-management').show()