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.