DropDownChoice - 未选择任何内容,值 -1?

发布于 2024-09-29 12:01:22 字数 91 浏览 5 评论 0原文

我的表单上有一个 DropDownChoice 组件,当提交表单并且未从 DropDownChoice 中选择任何内容时,返回的默认值为“-1”。有办法改变这种行为吗?

I have a DropDownChoice component on my Form and when the form is submitted and nothing is selected from the DropDownChoice, the default value that's returned is "-1". Is there are a way to change this behavior?

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

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

发布评论

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

评论(2

极致的悲 2024-10-06 12:01:22

此行为由 AbstractSingleSelectChoice 中的常量字段控制

protected static final String NO_SELECTION_VALUE = "-1";

,该常量字段是 DropDownChoice 的超类。

您无法在子类中更改此值,因此为了更改使用的值,您必须找到此常量的使用并重写使用它的方法以使用其他默认值。

这样做会有风险,尽管这是可能的。我知道您必须至少重写 getDefaultChoice(final Object selected)getModelValue()

你为什么要这样做?就其目的而言,这是一个合理的值。

也许有更好的方法来满足您的潜在需求。

This behavior is controlled by a constant field

protected static final String NO_SELECTION_VALUE = "-1";

in AbstractSingleSelectChoice, which is a superclass of DropDownChoice.

You can't change this value in a subclass, so in order to change the value used, you would have to locate uses of this constant and override the methods that use it to use some other default.

Doing that would be risky, though it's likely possible. I know you'd have to override at least getDefaultChoice(final Object selected) and getModelValue().

Why do you wish to do this? It's a sensible value for its purpose.

Perhaps there's a better approach to accomplishing your underlying need.

唠甜嗑 2024-10-06 12:01:22

挂钩 beforeSubmit,然后更改您想要的内容。
我认为有这样的值是很好的,因为第一个元素是0,notting意味着-1。

Hook to the beforeSubmit, and change what you want.
I think it is good to have such a value, Since first element is 0, notting means -1.

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