Behaviours plugin hides but won't unhide a field

Bill Wonch August 7, 2013

Hi everyone -

I'm playing with the behaviours plugin, and I'm trying to create a record to track our builds (it's for audit - don't ask). We'd like to have the submitter specify branches, tags, or trunk, then pop up a field asking them to populate with the name of the branch or name of the tag.

I have the following code associated with the field where they specify branches/tags/trunk:

FormField locField = getFieldById ("SVN Location 2.0")
FormField branchField = getFieldByName ("Branch Name")
FormField tagField = getFieldByName ("Tag Name")

String location = (String) locField.getFormValue()

if (location == "branches") { 
    branchField.setHidden(false)
}
else {
    branchField.setHidden(true) 
}

The code works on the initial read, as "Branch Name" starts off as hidden, however, if you choose 'branches' in SVN Location 2.0, the field does not appear.

We're running JIRA 5.1.4.

Thanks!

Bill

1 answer

1 accepted

0 votes
Answer accepted
Bill Wonch August 8, 2013

I fixed this through JavaScript. Take a look at the answer given by rambanam prasad here: https://answers.atlassian.com/questions/193676/jira-show-hide-field-via-javascript-conditions-only-working-on-one-field

Suggest an answer

Log in or Sign up to answer