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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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())
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.