You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi Everyone,
In a little jam here... I'm trying to find a way to edit a select list option programmatically using Java.
Option option = ComponentAccessor.getOptionsManager().findByOptionId(optionID);
option.setValue(clientObject.getFullName());
option.store();
Basically, it's a select list with client names. If the person decides to change his/her name, how can i do it programmatically???
Hi @Kevin J ,
you are not using the correct approach. In order to create an option you need to use OptionManager class with method createOption (https://docs.atlassian.com/software/jira/docs/api/9.4.0/com/atlassian/jira/issue/customfields/manager/OptionsManager.html#createOption-com.atlassian.jira.issue.fields.config.FieldConfig-java.lang.Long-java.lang.Long-java.lang.String-)
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.