I want to map a multiselect customfield to a remote one, that is to copy the values of one multiselect customfield to the remote instance.
For example, the first JIRA instance has a customfield called languages which has many values of languages. When I want to copy the selected languages to the same field of remote JIRA instance, it need the
"remote option ID + option value" so that the option can map to one of the remote options.
But the option id of the two same named multiselect customfield options are different, so is there a way to get the remote multiselect customfield's options by the name of customfield.
Thank you very much.
Depends - could you tell us how you're coding? Is it a plugin in one Jira or the other, or an external something? I doubt it though, because most of the APIs expose the field options via id, not name (because the name can change)
actually, I want to expand a plugin which can copy issue between JIRA and JIRA. It can only support system field and a few types of custom field except the multi-select custom field. So I want to expand the plugin to support the multi-select field, but I can not map the options from a multi-select custom field to the remote issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How does it handle the single-select field then? That's the same list of options.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you very much!! Yesterday I didn't understand how it achieved the single-select. I saw it again just now after your answer and found it had the code how to handle the remote option, and I finished the multi-select field map as the single-select. Thanks again!!
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.