I have a lot of projects using the same Field Configurations and so cannot change them. However, I do occasionally want to make an exception in some project and make a field that is required (according to the FC) optional.
Is there a way to do this using Script Runner?
No, the field configurations are handled by the internals of JIRA.
The Script Runner can execute code that can blank out mandatory fields as part of a script, but it can't bypass it in the UI, because of the structure. When you open up a create/edit page, JIRA hands the browser an indicator that the field is mandatory to tell the user that it's needed. When the user submits their data, the data goes to the internals, which check the field config and hand back a failure if a mandatory field is empty. There's no way to insert any scripting in that process.
If you reverse the concept though, then yes, you can do it. Make the field optional in the field configs, but then use a "behaviour" to make it mandatory when you want it to be mandatory. Script Runner can do this because it can hand the browser code that makes the field mandatory in the browser, before the field config check.
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.