Icefaces:使用复选框或类似内容禁用验证
我想禁用 inputText 或任何其他验证器的必需属性,具体取决于单击“保存”按钮时 selectBooleanCheckBox 的值,我该怎么做?
我尝试过这个,但没有结果。
I want to disable the required attribute of the inputText, or any other validator, depending on the value of the selectBooleanCheckBox when I click on the Save Button, How I can do it?
I tried this, but with not result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以通过让复选框的值控制 inputText 的 required 属性来完成。如果您想在失去 inputText 焦点时验证 inputText 值,则使用 selectBooleanCheckbox 上的partialSubmit="true" 也可以触发所需的值。
例如:
view.xhtml
MyBean.java
myBean 必须至少具有扩展的请求范围。
This could be done with letting the value of the checkbox controll the required attribute of the inputText. With partialSubmit="true" on selectBooleanCheckbox you can trigger the required value also if you want to validate the inputText value when losing the focus on inputText.
For Example:
view.xhtml
MyBean.java
myBean has to have at least extended request scope.