1. As a user, for affect/s version field I should be able to add only single value (choice) for this field.
Currently it is allowing more than one options.
2. As a user I should not be able to create version. How to restrict it?
Hi,
Please use this script in the field server-side script:
def field = getFieldById(getFieldChanged()) def version = field.getValue() as Collection if (version.size() > 1) { field.setValid(false) field.setError("Version/s can only be one value.") } else { field.setValid(true) field.clearError() }
Thanks
Br,
John Chin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
If you have Scriptrunner, you could do it with the behaviour functionality (available only for Jira Server/Data Center) or custom validators.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Alexey Matveev , I have the same requirement as mentioned above and we are using Scriptrunner (behaviour) app. Could you please provide more details to configure this behaviour?
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.