Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,237
Community Members
 
Community Events
184
Community Groups

JIRA7 - Behavior - Project picker - filter by Project Category and still set "None" as first option

Ramakrishnan Srinivasan
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.
Feb 26, 2019

Hi,

 I need some help, I am able to filter project picker list with this behavior script given below

But, after I get the filtered list, the "None" option is not present. I need to have the None option and it has to be the first option. Can anyone please help me on how to add None at the top of the project options

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.project.ProjectManager

def customFieldManager = ComponentAccessor.getCustomFieldManager()
def projectManager = ComponentAccessor.getProjectManager()
def projects = projectManager.getProjectObjects()

//Project-1 is customfield_14503
def formField = getFieldById("customfield_14503")

def prList = ComponentAccessor.getProjectManager().getProjectObjects()

formField.setFieldOptions(projects.findAll{if(it.projectCategoryObject) {it.projectCategoryObject.name in ["Common", "Lab Support", "Test Management"]}})

 

1 answer

1 accepted

0 votes
Answer accepted
Ramakrishnan Srinivasan
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.
Feb 27, 2019 • edited

Looks like my trial is working, posting the working Behavior code here, reference article:

https://community.atlassian.com/t5/Adaptavist-questions/Scriptrunner-behaviour-Setting-select-list-options-None-is-not/qaq-p/934238

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.project.ProjectManager

def customFieldManager = ComponentAccessor.getCustomFieldManager()
def projectManager = ComponentAccessor.getProjectManager()
def projects = projectManager.getProjectObjects()

def filteredProjects = projects.findAll{
if(it.projectCategoryObject) {
if(it.projectCategoryObject.name in ["Common", "Engineering"]) {
it
}
}
}

def formField = getFieldByName("Project-3")
def projectsMap = [:]
projectsMap.put("-1", "None")

projectsMap += filteredProjects.collectEntries {
[(it.id) : (it.name)]
}
formField.setFieldOptions(projectsMap)

 

Still, I would like to know is this OK or any other better way possible

Suggest an answer

Log in or Sign up to answer