gpt4 book ai didi

javascript - 用于使 Jira 中所需字段基于 radio 检查创建问题屏幕的脚本?

转载 作者:行者123 更新时间:2023-11-30 05:48:33 25 4
gpt4 key购买 nike

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

最佳答案

查看 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了解更多信息。

关于javascript - 用于使 Jira 中所需字段基于 radio 检查创建问题屏幕的脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16264448/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com