Validators: one, the other or both fields mandatory on transition

Rok Antolic November 19, 2015

Hello,

I need to request either "Stellungnahme Gruppen" or "Stellungnahme Personen" from users on transition with validators, but also the case when both fields are filled will be fine.

With our current addons and in native JIRA I can't find a way to do it, so perhaps I can get it done in script runner? Anyone willing to help a bit with the code? 

Cheers,

Rok

PS: the closest thing I found so far (One field xor another is required) -> https://jamieechlin.atlassian.net/wiki/display/GRV/Validators

2 answers

1 accepted

2 votes
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 19, 2015

Script Runner has moved on a bit - see https://scriptrunner.adaptavist.com/latest/jira/builtin-scripts.html#_simple_scripted_condition

You should be able to do it on one line now -

cfValues['MySelect1']   || cfValues['MySelect2'] 
M Hoogenboom March 28, 2016

would this also work for the "Comment" field. Something like: 

cfValues['MyCustomField'] || cfValues['Comment']

0 votes
Rok Antolic November 19, 2015

Awesome, thanx man smile

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 19, 2015

I should have said you've found a script which is pretty close already, it should actually still work (if you changed the XOR to OR and possibly made some updates to the calls, as the JIRA APIs have changed) But SR has functions that simplify the need for such code, so I thought you should try them first

Suggest an answer

Log in or Sign up to answer