Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

show/hide custom fields using behaviors from adaptivist scriptrunner not working

I am trying to use behaviors to show a hidden (hideable text field) called “Additional Info.”

 

This field is supposed to show if the reporter on the Create screen clicks “Yes” on the following radio buttons:

JCCC

J.Crew Rewards

 

Unfortunately, it doesn’t work. It seems as if it should be pretty easy. Can someone please look at the below syntax and image attached and tell me where I screwed up?

 

Right now I’m just trying it with one of the radio buttons.

 

def jccc = getFieldByName("JCCC")

def jcrewrewards = getFieldByName("J.Crew Rewards")

def additional = getFieldByName("Additional Info.")

 

if (jccc.getValue() == "Yes")

 

{

   

    additional.setHidden(false)

   

}2018-08-12_15-44-18.jpg

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
1 vote
Answer accepted
Roland Holban (Adaptavist)
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Aug 14, 2018 • edited

Whenever you set a behaviour script on a field (like you did on the "Additional Info" field in your screenshot) that script will trigger every time that field changes its value. So instead you want it on the "JCCC" field so that when a user changes the value the script will run.

 

What you want to do is add this code in the initialiser section:

getFieldByName("Additional Info.").setHidden(true)

this will run one time when the screen is loaded and will initially hide your field.

 

Then configure the behaviour on the "JCCC" field and use the following script:

def jccc = getFieldById(fieldChanged)
def additionalInfo = getFieldByName("Additional Info.")

if (jccc.value == "Yes") {
additionalInfo.setHidden(false)
}

 

TAGS
AUG Leaders

Atlassian Community Events