primefaces 咆哮重新显示之前的消息

发布于 2024-11-14 10:25:43 字数 4433 浏览 2 评论 0原文

我有一个表单,其中包含数据表中的列表。要将新记录添加到列表中,请单击“添加”,然后出现对话框 ,其中包含 2 列的任何空数据表,其中有两个要填充的输入文本框。在对话框中我有“保存”和“取消”按钮。单击“保存”按钮后,新记录应保存到数据库中,并且表单中的列表应显示新记录。数据表具有 primefaces 内联行编辑功能。我正在使用咆哮来显示错误消息。一旦我用空数据更新记录,它就会显示所需的消息。但是当我单击“添加”按钮时,它再次显示相同的必需消息。它显示了之前的错误。我不想这样。任何人都可以在这方面帮助我。 “添加”是一个ajax 请求。

<h:body>
<ui:composition template="/WEB-INF/facelets/template/adminLayout.xhtml">
    <ui:define name="view"> 
<h:form id="myForm" prependId="false">


<div class="header" >
    <div class="titleColor">
        T_COD_Prefil
    </div>
</div>

<div class="divPosition">
<p:dataTable var="profile" id="profileTable" value="#{profileView.profileModelList}" rowEditListener="#{profileView.rowEditListener}" onRowEditUpdate="buttonPanel" >
                    <p:column style="width:60px;">                  
                        <p:rowEditor/> 
                        <h:commandButton  style="padding-left:5px;" image="/resources/images/delete.jpeg" styleClass="spa"  value="delete" immediate="true" actionListener="#{profileView.delete}" >
                            <f:attribute name="delteProfile" value="#{profile}" />
                        </h:commandButton>                          
                    </p:column>

                    <p:column>                                  
                        <f:facet name="header">
                            <h:outputText value="IDprefil" />
                        </f:facet>                          
                        <h:outputText value="#{profile.profileId}" />

                    </p:column>

                    <p:column>                  
                        <f:facet name="header">
                            <h:outputText value="description" />
                        </f:facet>                      
                        <p:cellEditor>                      
                            <f:facet name="output">
                                <h:outputText value="#{profile.profileDescription}" />
                            </f:facet>
                            <f:facet name="input">
                                <h:inputText required="true" requiredMessage="#{msg.desProfileEmpty}" maxlength="255"  value="#{profile.profileDescription}" />
                            </f:facet>                          
                        </p:cellEditor>
                    </p:column>                 
                </p:dataTable>

        </div>
        <div class="divButPosition">

        <h:panelGroup id="buttonPanel">

            <p:commandButton id="buttons" value="Add" actionListener="#{profileView.addEmptyProfile}"
            async="true" update="myForm" rendered="#{!profileView.addNewRow}" oncomplete="profileDialog.show();" />

        </h:panelGroup>

    </div>

    <p:growl id="growl" showDetail="false" />  
<p:dialog id="profileDialog" header="Profile Detail" prependId="false" widgetVar="profileDialog" resizable="false" width="500" showEffect="explode" hideEffect="explode" modal="false" closable="false">

<h:dataTable var="newProfile" value="#{profileView.newProfile}">
    <h:column>
        <f:facet name="header">
            <h:outputText value="IDprefil" />
        </f:facet>
        <h:inputText value="#{newProfile.profileId}" required="true" requiredMessage="not empty" />
    </h:column>
    <h:column>
        <f:facet name="header">
            <h:outputText value="description" />
        </f:facet>
        <h:inputText value="#{newProfile.profileDescription}" required="true" requiredMessage="Desctiption should not be empty" />
    </h:column>
</h:dataTable> 
<p:commandButton value="Save"  actionListener="#{profileView.saveProfile}" async="true" update="growl,buttonPanel,profileTable" oncomplete="handleRequest(args ,document.getElementById('profileDialog'))" />
<p:commandButton value="Cancel" immediate="true" update="buttonPanel" async="true"  actionListener="#{profileView.cancelProfile}" oncomplete="profileDialog.hide();" />

</p:dialog> 
</h:form>  

I have a form which contains a list in a datatable. To add a New record to the list, click "Add" and the dialog box <p:dialog> appears, in that any empty datatable with 2 columns having two input text boxes to fill. In the dialog box I have Save and Cancel buttons. Once we click on Save button, a new record should saved into the database and the list in the form should show with the new record. The datatable is of primefaces inline row editing functionality. I'm using growl to display the error messages. Once I update my record with empty data, it shows the required message. But when I click on the Add button, it is again showing the same required message. It is showing the previous error. I don't want to have that. Could anyone help me in this context. The "Add" is an ajax request.

<h:body>
<ui:composition template="/WEB-INF/facelets/template/adminLayout.xhtml">
    <ui:define name="view"> 
<h:form id="myForm" prependId="false">


<div class="header" >
    <div class="titleColor">
        T_COD_Prefil
    </div>
</div>

<div class="divPosition">
<p:dataTable var="profile" id="profileTable" value="#{profileView.profileModelList}" rowEditListener="#{profileView.rowEditListener}" onRowEditUpdate="buttonPanel" >
                    <p:column style="width:60px;">                  
                        <p:rowEditor/> 
                        <h:commandButton  style="padding-left:5px;" image="/resources/images/delete.jpeg" styleClass="spa"  value="delete" immediate="true" actionListener="#{profileView.delete}" >
                            <f:attribute name="delteProfile" value="#{profile}" />
                        </h:commandButton>                          
                    </p:column>

                    <p:column>                                  
                        <f:facet name="header">
                            <h:outputText value="IDprefil" />
                        </f:facet>                          
                        <h:outputText value="#{profile.profileId}" />

                    </p:column>

                    <p:column>                  
                        <f:facet name="header">
                            <h:outputText value="description" />
                        </f:facet>                      
                        <p:cellEditor>                      
                            <f:facet name="output">
                                <h:outputText value="#{profile.profileDescription}" />
                            </f:facet>
                            <f:facet name="input">
                                <h:inputText required="true" requiredMessage="#{msg.desProfileEmpty}" maxlength="255"  value="#{profile.profileDescription}" />
                            </f:facet>                          
                        </p:cellEditor>
                    </p:column>                 
                </p:dataTable>

        </div>
        <div class="divButPosition">

        <h:panelGroup id="buttonPanel">

            <p:commandButton id="buttons" value="Add" actionListener="#{profileView.addEmptyProfile}"
            async="true" update="myForm" rendered="#{!profileView.addNewRow}" oncomplete="profileDialog.show();" />

        </h:panelGroup>

    </div>

    <p:growl id="growl" showDetail="false" />  
<p:dialog id="profileDialog" header="Profile Detail" prependId="false" widgetVar="profileDialog" resizable="false" width="500" showEffect="explode" hideEffect="explode" modal="false" closable="false">

<h:dataTable var="newProfile" value="#{profileView.newProfile}">
    <h:column>
        <f:facet name="header">
            <h:outputText value="IDprefil" />
        </f:facet>
        <h:inputText value="#{newProfile.profileId}" required="true" requiredMessage="not empty" />
    </h:column>
    <h:column>
        <f:facet name="header">
            <h:outputText value="description" />
        </f:facet>
        <h:inputText value="#{newProfile.profileDescription}" required="true" requiredMessage="Desctiption should not be empty" />
    </h:column>
</h:dataTable> 
<p:commandButton value="Save"  actionListener="#{profileView.saveProfile}" async="true" update="growl,buttonPanel,profileTable" oncomplete="handleRequest(args ,document.getElementById('profileDialog'))" />
<p:commandButton value="Cancel" immediate="true" update="buttonPanel" async="true"  actionListener="#{profileView.cancelProfile}" oncomplete="profileDialog.hide();" />

</p:dialog> 
</h:form>  

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深巷少女 2024-11-21 10:25:43

尝试在代码顶部编写您的咆哮,并在单击按钮时更新它。
好吧,在 IE8 上不起作用。

Try writing your growl at the top of the code, and update it when clicking on the button.
Well, doesn't work on IE8.

九命猫 2024-11-21 10:25:43

单击提交按钮后,将首先验证所有字段,因此,如果其中一些字段为空,则会弹出所需的消息。因此,请保持在不同标签下提交相关数据。不同的提交按钮基本上有不同的表单

After submit button click, all fields will be validated first so, if some of them empty then requried message will be popup. So keep submit related data under different tag. Basically different forms for different submit buttons

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文