如果出现“以上都不是”的情况,如何将 XForms 复选框标记为无效?选项被选中?
场景:
<xf:select appearance="full">
<xf:item>
<xf:label>Vanilla</xf:label>
<xf:value>vanilla</xf:value>
</xf:item>
<xf:item>
<xf:label>Strawberry</xf:label>
<xf:value>strawberry</xf:value>
</xf:item>
<xf:item>
<xf:label>None of the above</xf:label>
<xf:value>none</xf:value>
</xf:item>
</xf:select>
当选择“以上都不是”选项时,如果还选择了任何其他选项,则该控件应被标记为无效。我怎样才能实现这个目标?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用如下所示的 XPath 约束来完成此操作:它的
作用如下:
count() = 1)
或者,或者此外,正如 Alex 在上面指出的那样,您可以在以下情况下自动取消选择其他选项:用户选择“none”选项:
这样做的作用是:
更新2016-11-25:
原始解决方案也可以表示为:
You can do this with an XPath constraint that looks like this:
What this does is the following:
count() = 1
)Alternatively, or in addition, as Alex points out about above, you could automatically deselect the other options when the user selects the "none" option:
What this does is:
UPDATE 2016-11-25:
The original solution could also be expressed as:
contains() xpath 函数最适合您的要求。代码如下。
然而,正如其他人所说,如果即使用户选择它,您也不希望将其添加到您的选择中,则可以将“无”替换为“”。
contains() xpath function is best for your requirement. code will be as below.
However as others said, you can replace the 'none' with '' if you do not want it to be added to your selection even if the user selects it.