模态p:对话框在关闭后使背景灰显

时间:2018-05-02 07:07:13

标签: primefaces

我有一个Web项目,它打开一个模式对话框来显示一些数据。按下按钮后关闭对话框会使网页无效,因为所有内容仍然是灰色的(就像运行模式对话框时一样)并且不允许用户交互。

对话框:

<ui:composition
    xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://xmlns.jcp.org/jsf/core"
    xmlns:h="http://xmlns.jcp.org/jsf/html"
    xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
    xmlns:p="http://primefaces.org/ui"
    xmlns:c="http://xmlns.jcp.org/jsp/jstl/core"
>
<p:dialog header="#{workOrderAction.confirmation.header}"
    widgetVar="multi_confirmation_#{loop.index}"
    maxHeight="300"
    modal="true"
>

按下按钮:

<p:commandButton rendered="#{workOrderAction.class.name == 'se.evado.server.ao.ImmediateWorkOrderAction'}" value="#{workOrderAction.label}" action="#{listWorkOrdersBean.doMultiselectAction(listWorkOrdersBean.selectedRows,workOrderAction,tmpSelectedConfirmationChoiceId)}" process="@this select_choice" update="@form"/>

任何人都有任何想法为什么会这样?

1 个答案:

答案 0 :(得分:2)

这是Primefaces中的一个问题。如果ajax-update包含对话框的块,则会更新对话框并关闭状态。但是如果打开对话框,则模态<div>保持可见。您必须将对话框放在任何可更新的块之外,或者在更新之前关闭对话框。