I have a scenario where several hundred field values need to be disabled for a multi-select list custom field in Jira. Is there any way to bulk disable custom field values within the Jira interface, perhaps with Scriptrunner?
Or, is disabling values one by one the only way to handle this from within Jira?
Thanks!
Andrew
If you all want to do is filtering out (not showing) those fields in the PDF (generated by the JIRA PDF View Plugin), then what you should do is a simple check like this:
#if($customField.idAsLong != 10010 && $customField.idAsLong != 10011)
## here comes the export code
#end
This sample snippet assumes that the fields not to export has ID = 10010 and 10011.
This way you code will skip them and avoid the ReferenceException.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.