I want to make a custom field mandatory when choosing a specific status -
A custom field to be required when changing the status to "In review", in Bug issue type.
Anyone?
Hello,
You can add the Field Required validator, if you are on Jira Cloud.
If you are on Jira Server, then you would need an add-on. For example, you could use the Power Scripts add-on:
You could write a validator wiht a code like this:
if
(
!hasInput(
"customfield_10200"
)) {
return
false
,
"customfield_10200"
, errorMsg;
}
return true;
10200 is the id of your custom field.
You can find more info about validators here:
https://confluence.cprime.io/display/JJUPIN/Customizing+workflows
Thanks Alexey. How do I know if my org uses Jira cloud or server?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you are on Cloud, then your url is something like this:
yourdomain.atlassian.net
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.
JIRA Suite Utilities (JSU) also allow you to do it along with many other useful features.
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.
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.