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.
Hi,
I have created a 'multi select checkboxes' custom field 5 option including 'None'.
It is a single field with multiple checkboxes as options.
I am trying to write a behaviour script for that field such way that if 'None' option is checked, then all other selected option will be unchecked by automatically. Also, 'None' will be unchecked by selecting any other option.
Here is my code,
def gatingMechanismField = getFieldById(getFieldChanged()) // Getting Gating Mechanism field object
def gatingMechanismValue = gatingMechanismField.getFormValue(); // Getting gating mechanism values
if(gatingMechanismValue == '13405' )
{
gatingMechanismField.setFormValue('13405')
}
else
{
List list = gatingMechanismValue;
if(list.contains(13405))
{
list.remove(13405);
gatingMechanismField.setFormValue(list)
}
}
It doesn't work.
Observation:
- getFormValue() return's value of the option (say: 13405) as a string when 'None' is chosen
- If we choose more than one option , it returns array list (ex: [13405, 13400. 13401])
Can someone please help me on this.
Hi Nallu.
I've done some minor modifications to your code, where you had a few dangerous statements that could lead to exceptions. Also, if I'm not mistaken, the value isn't a long, it's a String.
Try this:
def gatingMechanismField = getFieldById(getFieldChanged()) // Getting Gating Mechanism field object
def gatingMechanismValue = gatingMechanismField.getFormValue() // Getting gating mechanism values
if(gatingMechanismValue instanceof List) {
def list = gatingMechanismValue as List
if(list.contains('13405')) {
list.remove('13405')
gatingMechanismField.setFormValue(list)
}
} else {
gatingMechanismField.setFormValue(['13405'])
}
Cheers:
DYelamos
Btw I could be wrong about the ids being strings, if I am wrong, substitute all of the
'13405'
for
13405
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.