JSF Dropdowns - 强制执行非默认值进行验证

发布于 2024-09-30 03:43:47 字数 212 浏览 2 评论 0原文

我们有使用默认值“Select One..”的 JSF 下拉列表,但我们不希望 JSF 验证器在保存时接受此值作为可接受的值。

那么除了/或代替Required =“true”,有什么办法可以做到这一点?

示例值:

"select one.."
"cat"
"dog"

只有“cat”或“dog”应该通过验证。

We have JSF dropdowns that use a default value of "Select One..", but we do not want our JSF validator to accept this as an accpetable value on save.

so beyond/or in place of Required="true", is there any way to do this?

example values:

"select one.."
"cat"
"dog"

Only "cat" or "dog" should pass validation.

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

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

发布评论

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

评论(1

挽清梦 2024-10-07 03:43:47

您似乎已将“选择一个...”设置为标签和值。为了触发需求验证器,该值必须为 null。您需要将“选择一个...”设置为标签,并将null设置为

所以在视图中:

<f:selectItem itemValue="null" itemLabel="Select one..." />

或在模型中:

new SelectItem(null, "Select one...");

You seem to have set "Select one..." as both the label and value. In order to trigger the requireness validator, the value has to be null. You need to set "Select one..." as label and null as value.

So in view:

<f:selectItem itemValue="null" itemLabel="Select one..." />

or in model:

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