Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×In our case CascadingField is an cascading custom field that includes Option A and Option B, this Options has several Values. So we need CustomFieldRequired to be required, when CascadingField = OptionA.ValueB, while performing Close transition.
However we do not need this Close tranistion to be hidden. Therefore I didn't added the condition.
I have tried the simple script by adding cfValues['CascadingField '] == 'OptionA.ValueB' as a validation to the Close transition and additionally I have added "Field Required" Validator for CustomFieldRequired. But it doesn't work.
When I'm performing "Close" transition the CustomFieldRequired is required as CascadingField is set up to OptionA.ValueB, but when the CustomFieldA is filled, it still askes me to fill it in. Why ? How can I fix it ?
I also tried following script
(cfValues['CascadingField']?.get(null) == 'OptionA' && cfValues['CustomFieldRequired'] != "") and it doesn't works. I don't want to use Behaviour Plugin or addittional plugin as I'm sure that it can be done with Scrip Runner functions.
THanks in advance!
Was solved with following Script
if (!issue.fixVersions && (cfValues['CascadingField']?.values()*.value[1].contains("OptionA")||(cfValues['CascadingField']?.values()*.value[1].contains("OptionB")))) return false else return true
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have tried also following (cfValues['CascadingField ']?.get(null) == 'OptionA' && issue.fixVersions != null) (cfValues['CascadingField']*.value.contains("OptionA") && issue.fixVersions != null) and it didn't work
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register Now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.