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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.