检查 JSF 中表单部分的验证错误

发布于 2024-11-25 17:05:54 字数 683 浏览 1 评论 0原文

我正在构建一个 Seam 应用程序,它基本上是一个分为不同部分或模块的巨大表单。我需要一种方法来确定模块何时“完成”,这意味着该模块中字段的所有验证都通过了。然后我需要在视图中做一些事情,设置 css-class 或其他什么。

比如:

<a:region id="region1">
    <s:div styleClass="#{invalid ? 'errors' : ''}">
       <h:inputText required="true" id="input1" />
       <h:inputText required="true" id="input2" />
       <h:commandButton value="Save this section" reRender="region1" />
    </s:div>
</a:region>

我想我有两个选择:

  • 使用某种视图逻辑(例如单个字段的 #{invalid})
  • 使用 bean 中的方法,我以编程方式获取模块的所有组件,并检查它们的验证错误。

但是,我找不到任何方法来完成其中任何一个。如果这可能的话,有什么想法吗?

我们将 JSF 1.2 与 Seam 结合使用。

谢谢。

I'm building a Seam application, which is basically a huge form divided into different parts, or modules. I need a way to figure out when a module is "complete", meaning all validation for the fields in that module passes. I then need to do something in the view, setting a css-class or whatever.

Something like:

<a:region id="region1">
    <s:div styleClass="#{invalid ? 'errors' : ''}">
       <h:inputText required="true" id="input1" />
       <h:inputText required="true" id="input2" />
       <h:commandButton value="Save this section" reRender="region1" />
    </s:div>
</a:region>

I figured I had two options:

  • Using some sort of view-logic (like #{invalid} for a single field)
  • Using a method in the bean, where I get all components for the module programmatically, and check them for validation errors.

However, I can't find any way to do any of them. Any ideas if this is even possible?

We're using JSF 1.2 with Seam.

Thanks.

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

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

发布评论

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

评论(1

水染的天色ゝ 2024-12-02 17:05:54

您可以使用 UIInput #isValid() 检查特定输入组件是否发生验证错误。

<s:div styleClass="#{!input1.valid or !input2.valid ? 'errors' : ''}">
   <h:inputText binding="#{input1}" required="true" id="input1" />
   <h:inputText binding="#{input2}" required="true" id="input2" />
   <h:commandButton value="Save this section" reRender="region1" />
</s:div>

You can use UIInput#isValid() to check if a validation error has occurred on the particular input component.

<s:div styleClass="#{!input1.valid or !input2.valid ? 'errors' : ''}">
   <h:inputText binding="#{input1}" required="true" id="input1" />
   <h:inputText binding="#{input2}" required="true" id="input2" />
   <h:commandButton value="Save this section" reRender="region1" />
</s:div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文