2

如何根据无线电检查使字段 Require 动态,这意味着如果我选择选项 A,那么即使它们是
字段配置中的可选字段,也应该将少数自定义字段更改为 require。或者他们有什么方法可以用脚本来做到这一点?

4

1 回答 1

1

查看插件 Behaviors,使用它您可以执行以下操作:

FormField dropdown = getFieldByName("My Radio Check")
FormField other= getFieldByName("Other field")

if (dropdown.getFormValue() == 'A') {
     other.setHidden(false) // set custom filed vlaues
     other.setFormValue("A choosen")
     other.setRequired(true)
} else {
     other.setHidden(true) // hide any fields you like
     other.setRequired(false)
}

查看文档以获取更多信息。

于 2013-04-28T20:20:20.670 回答