hello,
I'm try to create a script field that will give me all the fix version of specif project, based on
Jira project picker field.
so if will select project x i will see all fix version of x project.
how can i create this script field.
Thanks.
Hello,
I am not sure what you mean by all fix versions for x project. But If you want to get all versions for the selected project. The script will be like this
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.project.Project
def projectCS = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("test_project_picker")
def project = issue.getCustomFieldValue(projectCS) as Project
def versionList = ComponentAccessor.getVersionManager().getVersions(project)
return versionList.toString()
thanks, but I was wrong with my approach to this problem.
the problem is:
The user should select a project from the Jira project picker field.
after the user selects a project he will be able to select the project version from custom
select list field.
so I need another field that will copy the script field value (your answer ) or maybe script listener.
Thanks.
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.