如何使用javascript保持primefaces对话框打开

时间:2016-07-28 06:19:24

标签: javascript jsf primefaces modal-dialog

我对primefaces对话框有疑问。我有自定义验证。 我创建了javascript方法,以便在自定义验证失败时保持对话框打开。 但是虽然验证失败了,但它一直在关闭。

这是我的代码:

function alertMsg()
    {
        var str1 = document.getElementById("templateForm:resultMsg").textContent;
        var str2 = "Duplicate name.";
        if(str1.localeCompare(str2) == 0)
        {
            alert("inside same!")
            PF(dlg).show(); //Although i try to keep open, this dialog always close.
        }
    }

 .....some code
<p:dialog header="Add" widgetVar="dlg" id="add" resizable="false" modal="true" closable="false" width="600px" >
<h:panelGrid columns="4" cellpadding="5" > 
    <p:outputLabel value="Name" style="width:130px;"/>
    <p:outputLabel  value=":" style="width:15px;"/>
    <h:inputText id="Name" value="#{Bean.Name}" styleClass="form-control"  style="width:300px;" required="true" requiredMessage="!" >
    </h:inputText>
    <h:outputText id="resultMsg1" value="Duplicate name." style="color:red; width:30px;"/>
</h:panelGrid>

<p:commandButton process="@parent" ajax="true" value="Save" onstart="alertMsg()"
                                    update= templateForm:resultMsg" action="#{Bean.save()}" styleClass="btn btn-danger">
                                    </p:commandButton>

</p:dialog>

1 个答案:

答案 0 :(得分:1)

请使用actionLinstener代替action

您可以找到here

的详细说明