在Jira中根据无线电检查创建问题屏幕所需的字段脚本?

时间:2013-04-28 15:29:54

标签: javascript groovy jira

如何在无线电检查的基础上创建字段需要动态,意味着如果我选择选项A,那么即使它们是可选的,也应该将少数自定义字段更改为要求 从现场配置。或者他们用脚本做任何事情?

1 个答案:

答案 0 :(得分:1)

查看plugin Behaviours,使用它可以执行以下操作:

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)
}

查看documentation了解详情。