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,552,546
Community Members
 
Community Events
184
Community Groups

https://community.atlassian.com/t5/Adaptavist-questions/Have-to-Autopopulate-text-description-when-

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:

1 answer

0 votes
Peter-Dave Sheehan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Nov 10, 2022

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)
}

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events