我想在Jira中创建一些类似于我们在JavaScript中的动态字段。
e.g。有一个下拉列表,值为a,b和c。如果我选择a,则只会弹出一些字段;如果我选择b,将仅为b。
弹出一些字段这可以在Jira中完成,还是有任何插件可以解决这个问题?
答案 0 :(得分:3)
您可以使用JIRA Behaviours Plugin根据任何选定字段更改任何字段,例如:
FormField dropdown = getFieldByName("My Dropdown")
FormField other= getFieldByName("Other field")
if (dropdown.getFormValue() == 'A') {
other.setHidden(false) // set custom filed vlaues
other.setFormValue("A choosen")
} else {
other.setHidden(true) // hide any fields you like
}