Hello dear community,
Please suggest the options how making cascading field child values required in Jira?
Has anyone faced this kind of problem, and how was it resolved?
You can suggest everything up to purchasing the apps that can cover this need.
Thanks a lot
You can do this with the ScriptRunner app:
Go to Project Settings > Workflows.
Edit the workflow and select the transition (e.g., Create Issue, In Progress).
Add a ScriptRunner Validator.
Use a script like this:
def value = issue.getCustomFieldValue("My Field Name")
return value?.child?.value != null
This validator checks that the child value is not null!
Correct, but this will mean the company has to purchase or already have this 3rd party app.
I think it's fair to mention this, as ootb this is not possible.
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.
Currently this is not possible, but its classified as a feature.
You can follow issue: https://jira.atlassian.com/browse/JRACLOUD-32463
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.