How to retrieve option in cascading list using ScriptRunner

CST JIRA Confluence Admin July 18, 2016

Hi all,

I want to retrieve options in cascading list using ScriptRunner groovy. Is it possible to do that ?

Note that: I don't have any issue associated with this custom field.

Thanks

2 answers

0 votes
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.
July 19, 2016
CST JIRA Confluence Admin July 19, 2016

Thanks Jamie but I still don't know how to use it ? I don't use the validator. I want to write a Groovy Script in Scripted Field.

0 votes
CST JIRA Confluence Admin July 19, 2016

This is the groovy script to get a list of options single choice

 

import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.issue.customfields.option.Options
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.component.ComponentAccessor
 
ComponentAccessor componentAccessor = ComponentAccessor.newInstance()
 
 
CustomField cf = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName(customfield_12000);
Options options = ComponentAccessor.getOptionsManager().getOptions(cf.getConfigurationSchemes().listIterator().next().getOneAndOnlyConfig())
But how to get the option of cascading list ???

Suggest an answer

Log in or Sign up to answer