How to: make select list required if number field > 0 (via Behaviours)?

Serj Shcherbakov May 13, 2016

Hello!

We use JIRA v.6.4.5 and ADAPTIVIST v. 4.1.3.11
I try to make custom validator via Behavior feature...

Some details:
image2016-5-13 17:15:46.png
image2016-5-13 17:15:18.png

My Code:

import com.atlassian.jira.issue.Issue
def n = getFieldById("customfield_15832") // NUMBER
def tm = getFieldById("customfield_10355") // Select List
def n2 = n.getValue() as Long
if (n2 > 0){
    tm.setRequired(true)
}

But it does not work.

Please assist.
Thanks!

1 answer

1 accepted

1 vote
Answer accepted
JamieA
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 15, 2016

This needs to be attached to the field that is driving whether the other one is required or not, in this case customfield_15832. You seem to have it attached as an initialiser, which only fires once. 

Serj Shcherbakov May 16, 2016

Hi @Jamie Echlin [Adaptavist], i am so sorry but your answer is unclear for me.
Can i expect more details of what do you mean?

JamieA
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 20, 2016

In your screenshot you have set that as an initialiser. Remove the initialiser, add the field customfield_15832, whatever it's name is, and attach the script as a server-side script, in that behaviour.

Suggest an answer

Log in or Sign up to answer