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)
}
Please check very helpful Adaptavist Script Runner library - https://library.adaptavist.com
As I know ther is now way to do this at this moment :/ This issue was created as an answer from Adaptavist for my question about that. I'm waiting for this.
Regards,
Seba
Even I was looking at forum about it and said that it is not possible to do this at this moment.
Thanks for the reply. I will also keep checking on the link you provided.
Thanks,
Om
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.
Yes, it is still unavailable
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.