如何保持“二选一” DropDownChoice Wicket 中的选项?
当我第一次加载页面时,下拉选项的默认选项是“选择一个”。有没有办法将其保留在下拉列表中,即使我已经选择了一个选项?
(以防我以后什么都不想放)
When I first load a page, the default option on a dropdownchoice is "Choose One". Is there a way to keep it in the dropdown, even when I have selected a choice?
(In case I would like to put nothing later)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用
DropDownChoice.setNullValid()
方法。来自javadoc:如果您想保留 NullValid = true 的“选择一个”文本,您可以在 Application.properties 文件中使用类似于以下内容的行:
You need to use the
DropDownChoice.setNullValid()
method. From the javadoc:If you want to keep the "Choose One" text with NullValid = true you can use a line similar to the following one in your Application.properties file:
在 .java 中:
在与 java 类关联的 .properties 文件中添加:
In .java:
In .properties file associated with java class add: