You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a custom field called business approver and it is a user picker multi user. I load the approvers based on the business function selected and it works great when there is one approver. When I need to load three approvers in to the approvers field, I can't get it to work.
Is there a way through Behaviours to do this? The below works for a single user. If I try to a second user, it does not work. It is just blank.
if (dropDownValue == "Business Strategy and Development")
{
approvers.setFormValue("211111111")
}
Hi Richard,
Are you trying to set the User Picker (Multiple users) with multiple values?
I've tried the script below and it works great (I've 3 usernames in my Jira: "carmen", "david" and "sim"):
if (dropDownValue == "Apple")
{
approvers.setFormValue("carmen, david, sim")
}
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.