I have Jira 5.2.4 with Behaviour plugin 0.5.3
I have a cascading select filed and a text field. my requirement is when i select the parent value of cascading select i should set a value in text field. i have this functionality working in Jira 4.4 as below
The same script is not working with Jira 5.2.4. I should get both the values of cascading field and store it in variables. Can somebody help me on this.
FormField TApp = getFieldByName("TestApprover")
FormField cf = getFieldByName("Testing/Team")
Collection values = cf.getValue()
String first = values[0]
String second = values[1]
if (first == "Idaho" ) {
TApp.setFormValue("Dev-Approvers")
}
else {
TApp.setFormValue("")
}
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.