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,557,529
Community Members
 
Community Events
184
Community Groups

Get custom field size for a multi select User

Hi,

 

I am doing a validation to check that only 2 users can be added in the multi users pickers.

Iam getting error on the last line. Please advice.

import com.atlassian.jira.component.ComponentAccessor
//ComponentAccessor.attachmentManager.getAttachments(issue).size() >= 1

ComponentAccessor.customFieldManager.getCustomFieldObjects(issue)?.findByName("Multi user picker").size() >= 1

 

Thanks,

Swarna

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jul 08, 2020

Your code is getting a list of custom fields with the name "multi user picker" and looking at the size of that list.

What you really want to do is get the current value of the field for the current issue try something like

final String customFieldName = "My Custom Field"

def customFieldManager = ComponentAccessor.customFieldManager
def customField = customFieldManager.getCustomFieldObjects(issue).findByName(customFieldName)
assert customField : "Could not find custom field with name $customFieldName"

def customFieldVal = issue.getCustomFieldValue(customField)

def numberOfOptions = customFieldVal.size()

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events