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

Script runner validator- reject the option for setting FieldA as long as the fieldB is empty

Deleted user March 14, 2018

 I would like to reject the option for setting the FieldA ("Fixed in version/s") filed as long as the fieldB ("Affects Version/s") field is empty

should I work with ?

if (! cfValues['FieldA']) ...

how should I write it with script validator? 

 

Thanks for your help !

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.
May 22, 2018

Instead of doing this in a validator, you could set up a behaviour and hide the fixedVersions field until the user inputs something in the affectsVersions field. 

Server-side script on "Affects Version/s" field:

def affectsVersions = getFieldById("versions")
def fixedInVersions = getFieldById("fixVersions")

if (!affectsVersions.value) {
fixedInVersions.setHidden(true)
} else {
fixedInVersions.setHidden(false)
}
TAGS
AUG Leaders

Atlassian Community Events