The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

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