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

Scriptrunner fields hiding/showing based on another field value

jmarko May 29, 2020

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.

Annotation 2020-05-29 115222.pngAnnotation 2020-05-29 132335.png

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
1 vote
Answer accepted
Peter-Dave Sheehan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
June 1, 2020

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)
}
jmarko June 1, 2020

Thank you Peter

TAGS
AUG Leaders

Atlassian Community Events