Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

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
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
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