用于 ui 重复输入的 JSF 消息

发布于 2024-12-15 12:09:28 字数 1457 浏览 3 评论 0原文

我有一个 JSF2 应用程序,它使用 呈现多个文本框,每个文本框都链接到集合中的一个项目。我需要在单个 标记中的输入之后显示错误消息。

同时,我在 标记之外还有一些其他必填字段,其中 应在其输入旁边显示错误消息,因此它们将具有相应的 标记。这里的问题是,每次我触发外部字段的验证时,其消息也会出现在 标记中。

代码如下:

<table cellpadding="0" cellspacing="0" width="100%">
    <tr>
        <td><h:outputLabel value="Items"/></td>
        <td>
            <ui:repeat var="i" value="#{itemsBean.itemsCount}" id="items">
                <h:inputText id="itemTitle" value="#{itemsBean.items[i]}" required="true" />
                <h:panelGroup layout="block" styleClass="clear" rendered="#{((i+1) % 10 == 0)}" />
            </ui:repeat>
            <h:messages id="itemsMessages" showDetail="false" showSummary="true" styleClass="error_list" />
        </td>
        <td><h:outputLabel value="Required Field" /></td>
        <td>
            <h:inputText id="requiredField" value="#{itemsBean.requiredField}" />
            <h:message for="requiredField" showDetail="false" showSummary="true" styleClass="error_list" />
        </td>
    </tr>
</table>

我知道这是 JSF 验证的工作方式,但我需要防止外部输入的消息出现在重复项目验证摘要中。 提前致谢。

I have a JSF2 application that uses <ui:repeat /> to render a number of text-boxes, each linked to an item in a collection. I need to show the error messages after the inputs in a single <h:messages /> tag.

At the same time, I have some other required fields outside the <ui:repeat /> tag, which
should have its error message next to their input, therefore they will have a corresponding <h:message /> tag. The problem here is that each time I have triggered the outside field's validation, its message appears also in the <h:messages /> tag of the <ui:repeat />.

Here is the code:

<table cellpadding="0" cellspacing="0" width="100%">
    <tr>
        <td><h:outputLabel value="Items"/></td>
        <td>
            <ui:repeat var="i" value="#{itemsBean.itemsCount}" id="items">
                <h:inputText id="itemTitle" value="#{itemsBean.items[i]}" required="true" />
                <h:panelGroup layout="block" styleClass="clear" rendered="#{((i+1) % 10 == 0)}" />
            </ui:repeat>
            <h:messages id="itemsMessages" showDetail="false" showSummary="true" styleClass="error_list" />
        </td>
        <td><h:outputLabel value="Required Field" /></td>
        <td>
            <h:inputText id="requiredField" value="#{itemsBean.requiredField}" />
            <h:message for="requiredField" showDetail="false" showSummary="true" styleClass="error_list" />
        </td>
    </tr>
</table>

I know that this is the way JSF validation works, but I need to prevent the outside input's message from appearing in the repeated items validation summary.
Thanks in advance.

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

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

发布评论

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

评论(1

揪着可爱 2024-12-22 12:09:28

尝试

这会导致组件仅显示来自没有设置 for 属性的消息组件。

Try <h:messages id="itemsMessages" showDetail="false" showSummary="true" styleClass="error_list" globalOnly="true"/>

This causes the component to only show messages from message-components with no for-attribute set.

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