I am looking to delete the value from a custom field using a scriptrunner listener. The result should b the field no longer appears on the view form as it is empy. How would I go about this?
passing a null value like I was trying is working. There was another issue with how I was setting the value on the field, it was an insights custom field which needs to be updated in a specific way if there is already a value in it apparently.
Did not work:
fieldToChange.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(fieldToChange), valueToSet),changeHolder)
Did work:
MutableIssue mi = (MutableIssue) issue;
mi.setCustomFieldValue(fieldToChange, valueToSet);
ComponentAccessor.getIssueManager().updateIssue(ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(), mi, EventDispatchOption.DO_NOT_DISPATCH, false);
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.