Hi there,
I would like to know how to add default options to a custom select list programatically.
Thanks
I wrote a plugin to add/remove/edit customfield values.
The plugin provides a REST API. It works from Jira 6.2+
Hi,
use OptionsManager createOption(FieldConfig fieldConfig, Long parentOptionId, Long sequence, String value)
Use search option before asking new question. Add options to select list is so common issue, that it was already answered in the past.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry for repeating the question. Anyway, by using the precious link, I dont know how to set a value in a select field from a plugin. In the example is shown how to create an option but not how to select one of the previously created options.
Any help?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try use
issue.setCustomFieldValue
and as newValue parameter use on of the options from your select CF. I think, that this solution do not update change history tab. To update history use
customField.updateValue(fieldLayoutItem, issueObject, modifiedValue, changeHolder)
Some links:
https://answers.atlassian.com/questions/22527/how-to-set-a-select-list-type-custom-field-programably
http://forums.atlassian.com/thread.jspa?threadID=46940
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I need this. In the meantime, I see it's available in Bob Swift's Command Line Interface plugin.
https://bobswift.atlassian.net/wiki/spaces/JCLI/pages/1294538018/addCustomFieldOptions
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there still no solution to this problem in 2019?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm in the same boat, I'm using Jira Cloud and I have to sync 100 field options in my custom field select list with an outside system that changes every month.
I'd love to find out how to do this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nathan Given Did you ever figure out how to do this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I abandoned the idea of a custom field and instead used components (since you can use the API to update components).
Not ideal, and definitely doesn't work in all cases. But it may be something you're also able to do.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
UPDATE:
The current version of the Custom Field Editor Plugin (1.1+) supports cascading Fields and offers a REST API: https://marketplace.atlassian.com/plugins/jiracustomfieldeditorplugin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was wondering if there is a way to programatically (REST API or other way) "add/remove/edit" parrent child options within CASCADE Custom Field?!
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.