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 Team,
Have to Auto populate text description in Details field when selecting an item from a CASCADING drop-down list field, could you please check this and guide me in scripting to do this
We have to populate the below in Details field
Please fill in the details below:
Label/Name:
Level:
Parent:
Has Child?:
Icon:
Location:
Content/Page:
One thing I recently found out is that updating the second element in a cascading select field does not trigger any behaviour execution.
So it will not be possible to populate the Details field when the second element is selected.
You either have to define your default off of the first element only or rely on some other trigger (like a checkbox field like "Check me to load default details")
import com.onresolve.jira.groovy.user.FieldBehaviours
import groovy.transform.BaseScript
@BaseScript FieldBehaviours fieldBehaviours
def cascadingFld = getFieldByName('cascading field name')
def detailsFLd = getFieldByName('Details')
if(detailsFld.value) return //don't do anything if Details is already populated
if(cascadingFld.value && cascadingFld.value[0] == 'First level value to cause default'){
def defaultDetails = """\
Please fill in the details below:
Label/Name:
Level:
Parent:
Has Child?:
Icon:
Location:
Content/Page:
""".stripIndent()
detailsFld.setFormValue(defaultDetails)
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.