Hi,
I am looking for a way to limit the range of a number field to a certain range of natural numbers. This should always apply and not only in a certain workflow step. I tried to add Javascript to the description as described here. But I guess I am lacking of some important details.
I thought of using Behaviors provided by Script Runner but also lacking of the implementation details. Perhaps someone has some hints or even a detailed description of how to do it.
Cheers,
Michaela
Hello,
You need to create a behavour. In the field part of the behavour add your customfield. Then push create serverside script button. I am not sure that I understand correctly your required condition but the script will be like the following:
def cs = getFieldByName("CustomFieldNAme")
if (cs.getValue().toString().length() < 2) {
cs.setError("Hello error")
cs.setRequired(true)
} else {
cs.setError("")
cs.setRequired(false)
}
You can read more about behavours here:
https://scriptrunner.adaptavist.com/4.3.1/jira/behaviours-overview.html#_description
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.