Hi,
I am looking the way to set the cascading values based on Issue type.
I was able to do for single selection using below code but how to set the cascading field type values similar to single selection in behavior
import com.onresolve.jira.groovy.user.FieldBehaviours
import com.onresolve.jira.groovy.user.FormField
import com.atlassian.jira.component.ComponentAccessor
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def optionsManager = ComponentAccessor.getOptionsManager()
// Get a pointer to my select list field
def selectList = getFieldByName("Activity Type")
// Get the issue type
//def ITName = underlyingIssue?.getIssueType().name
def ITName = issueContext.issueType.name
// Get access to the required custom field and options managers
//def customField = customFieldManager.getCustomFieldObject(selectList.getFieldId())
def fieldName = "Activity Type"
def field = getFieldByName(fieldName)
def customField = customFieldManager.getCustomFieldObjectByName(fieldName)
def fieldConfig = customField.getRelevantConfig(getIssueContext())
def options = optionsManager.getOptions(fieldConfig)
// Get the checkbox option value as a String
//def checkBoxVal = checkBox.getValue()
// Logic to do some actions depending on what check box value is selected
if (ITName == "Task") {
// define and set the required options when checkbox A is selected
//selectList.setFieldOptions(options.findAll {it.value in ['TST', 'TSTA',]});
def optionsMap = options.findAll {
it.value in ["TBD"] // list of options you want to show
}.collectEntries {
[
(it.optionId.toString()): it.value
]
}
field.setFieldOptions(optionsMap)
} else if (ITName == "Test Case") {
// define and set the required options when checkbox A is selected
def optionsMap = options.findAll {
it.value in ["Y","N"] // list of options you want to show
}.collectEntries {
[
(it.optionId.toString()): it.value
]
}
field.setFieldOptions(optionsMap)
}
Hello there,
Please feel free to share with us your solution so that it can help other users in the future!
Regards,
Shannon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.