Forums

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

Get user picker from Behaviours

Eduard Diez
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 6, 2022

Hi community

 

I need to know how can I get value from a userpicker field. Is possible to do this?

 

Thank's

1 answer

1 accepted

1 vote
Answer accepted
Antoine Berry
Community Champion
May 6, 2022

Hello @Eduard Diez ,

This will return the user key if you link this script to the user picker field :

import com.onresolve.jira.groovy.user.FieldBehaviours
import groovy.transform.BaseScript

@BaseScript FieldBehaviours fieldBehaviours

def userPickerField = getFieldById(getFieldChanged())
def userPickerFieldValue = userPickerField.getValue()
Eduard Diez
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 9, 2022

Thank's I try to do this

Suggest an answer

Log in or Sign up to answer