Can we add new values in select list from postfunction?

Raju KC
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 5, 2013

Any Idea!!!!!

2 answers

1 accepted

1 vote
Answer accepted
Henning Tietgens
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 5, 2013

This should be possible through Script Runner also I didn't tried it by myself. You need the OptionsManager (as already mentioned by Chaithra)

OptionsManager optionsManager = ComponentAccessor.getOptionsManager()

and the createOption() method of this manager. You can get the fieldConfig for this method for the current issue and the customfield cf like this

def fieldConfig = cf.getRelevantConfig(issue)

If it's a single select list the parentOptionId is null. But you have to set a valid sequence and I think to get a valid sequence value you have to get all options for this fieldConfig (optionsManager.getOptions(fieldConfig)) and determine the next sequence number.

Henning

0 votes
Chaithra N
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 5, 2013

hi,

Yes you can do this by writing custom post function.

Refer com.atlassian.jira.issue.customfields.manager.OptionsManager for more details on creating options etc

Chaithra N
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 5, 2013

I dont know about script runner, but we had done this in JIRA Service/ JOB Plugin. So this is doable in postfunction

Raju KC
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 5, 2013

Can it be done via script runner?

Raju KC
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 5, 2013

Any sample on how to implement?

Chaithra N
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 5, 2013

please find the sample

Issue issue

CustomField customField

String value; //value to be added as option

Option opt = null;

FieldConfig relevantConfig = customField.getRelevantConfig(issue);

List<Option> options = optionsManager.findByOptionValue(value);

if(null != options){

for (Option option : options) {

FieldConfig fieldConfig = option.getRelatedCustomField();

if (relevantConfig != null && relevantConfig.equals(fieldConfig)) {

return option;

}

}

}

if(!value.equals(""))

opt = optionsManager.createOption(relevantConfig, null, (long) 0, value);

Suggest an answer

Log in or Sign up to answer