how to get Values of Cascading Select Field in Jira 5.2.4

Rajesh Ellappan February 12, 2013

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("")

}

1 answer

0 votes
Fernando Horn[MLV Consultoria] October 13, 2014

Same Here

Suggest an answer

Log in or Sign up to answer