I've created a behaviour script that dynamically filters out certain options in a custom field based on what was selected in a filter field. The filtering is based on complete replacement of the set of options rather than removing each not applicable option one by one. It was working fine.
I've added some new options recently, and those options aren't being seen by the behaviour script. There are 3 scenarios in which this is apparent, each based on what value in the filter field is selected. In all 3, the log file shows that the script sees the initial unfiltered option set correctly, with the new and old options.
Sample option list: a, b, c, new; Where "new" is my newly added option.
Possible filter field values: a, b, c, new, test.
1. select "a" in filter field. option list filters into: a, new. The logs say that only "a" matches the filter, yet the "new" option is appended nonetheless.
2. select "new" in filter field. option list filters into: new. when filtering is done, the log says that there are no options that match the filter, yet "new" is in it somehow.
3. select "test" in filter field, which doesn't correspond to any options in the option list. option list filters into: new. when filtering is done, the log says that there are no options that match the filter, yet "new" is in it somehow.
Any ideas why this is happening?
I should note that I've initially imported a bunch of values using the "Bulk import custom field values" built-in script. After that I've added more values (tried manually and through the script) and this behaviour began occuring.
I’ve identified the problem cause. For an unknown reason, likely due to some oversight in the code of the ScriptRunner plugin or JIRA, select list options for a field cannot contain more than 1 set of brackets. If any option in the list does, any scripts that attempt to manipulate that option list will not have any effect. Example culprit option: test (test (test)).
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.