Get selected value from dropdownlist and set this value in another dropdownlist?

Nikhil Rote October 10, 2017

We have written one dropdown list name['EMployee']. In Employee Field there are 4 employee name ex{john, mark, sham, george}. And second Dropdownlist name ['Output']. In Output field there are 4 employee name ex{john, mark, sham, george}. Suppose we select 'mark' in ['EMployee']  dropdownlist. Then how should i set value of this field using groovy script in another dropdownlist called 'Output'. We need 'mark' string value. and we need to set this value in another dropdownfieldfield.
         Can you please help us. we are using 7.3.0 jira version. Thanks in advance.

1 answer

0 votes
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.
October 10, 2017

Try

def myCf = customFieldManager.getCustomFieldObjectByName("EMployee")

def cfValue = issue.getCustomFieldValue ( myCf )

And then, as you will have had options returned, cfValue.getName() should return the name of the option.

Suggest an answer

Log in or Sign up to answer