禁用特定的项目
我的表单中有 5 个单选按钮,选择一个并继续将我带到用户需要填写的表单。现在,在这 5 份表格中,我还没有完成这些单选按钮所填写的表格中的 2 份。所以我想禁用没有准备好表格的单选按钮。
我现在如何解决这个问题:如果用户选择这些没有准备好表单的单选按钮之一,它会显示“页面正在建设中”,但我想完全禁用它们,以便没有人选择它。
I have 5 radio buttons in my form, selecting one and proceeding takes me to a form that the user need to fill up. Now out of these 5, I have not yet finished 2 of the forms that these radio buttons take me. So I wanted to disable the radio buttons which donot have the forms ready.
How I solve it now: if a user selects one of these radio buttons that donot have a form ready, it says "Page under construction" but I want to disable them completely so that no one selects it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
f:selectItems
,使用SelectItem
构造函数采用disabled
参数< /a>.或者,如果您使用 < code>f:selectItem,使用
itemDisabled
属性。If you're using
f:selectItems
, use theSelectItem
constructor taking thedisabled
argument.Or, if you're using
f:selectItem
, use theitemDisabled
attribute.