You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I have problem with showing/hiding fields based on value chosen in previous field.
I found similar questions on this forum, but every solution that I tried failed. Perhaps its problem with Jira Service Desk version? We're using version 4.6.0 .
We want to have field 'Vrsta poizvedbe' with few options. When option 'Duplikat is chosen' by costumer on portal field 'Datum predvidenega vračila' is shown.
Otherwise is hidden. Its like cascadingValues is not 'Duplikat'. Is there a way to see what is in this field than?
Please help.
You have to put the serer-side script on the trigger field, not the target field.
So in this case, add the script to 'Vrsta poizvedbe'
def valuesToCauseHiding = ['Duplikat']
def fieldsToHide = ['customfield_12629']
def triggerField = getFieldById(getFieldChange())
def triggerValue = triggerField.value
fieldsToHide.each{fieldId->
def fieldToHide = getFieldById(fieldId)
fieldToHide.setHidden(triggerValue in valueToCauseHiding)
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.