Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JIRA list custom fieldis

Dmitriy Kalabin July 10, 2017

I need to put a condition on the user field in the post function. The custom field has a format list, i.e. The user chose the value and the function should look at this condition. Tell me how it can be done? How does getCustomFieldValue return a field of type list?

it's not working:

Is1 = issue.getCustomFieldValue(customField)

if Is1 == 'test1':

1 answer

0 votes
Nic Brough -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.
July 11, 2017

A "condition" has a very specific meaning in JIRA - it happens *before* a post function and *only* tells the system whether the current user may use the transition or not.

I am assuming by "field of type list", you're looking at a field that is a single-select list.  getCustomFieldValue will return an object representing the current selected, not a simple string.

You'll probably need something more like

if ( "test1".equals(Is1.getName()))

Suggest an answer

Log in or Sign up to answer