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

Karthika November 9, 2022

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

Suggest an answer

Log in or Sign up to 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.
November 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)
}
TAGS
AUG Leaders

Atlassian Community Events