Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Script Runner Check Length of Custom Field

Marc Jason Mutuc
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 16, 2018

How to do I check the length of a Custom Field that is a Text Field (single line)?

Need to validate if it is more than 10 characters. If it is 10 or less, it should throw an error.

I'm also planning to do this after checking the content of another field.

2 answers

Suggest an answer

Log in or Sign up to answer
4 votes
Mark Markov
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 16, 2018

Hello @Marc Jason Mutuc

Or you can create simple scripted validator (with easy-to-read condition) like this:

cfValues['CustomFieldName'].length() > 10

and ignore static type checking error.

allie ruby April 19, 2021

Hi Mark,

 my custom field is titled "name". I'm getting this error

allie ruby April 19, 2021

Screen Shot 2021-04-19 at 9.53.02 AM.png

Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 19, 2021

What type of field is it?  Unless it's a plain string (short text field), you'll probably need to convert it to something that has a .length function.

1 vote
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 16, 2018

I think you need something like the below (although you could do it in one hard-to-read line if you want)

def myField = customFieldManager.getCustomFieldObjects(issue)find {it.name == "My field name"}

def myFieldValue = issue.getCustomFieldValue()

if (myFieldValue.length() > 10) {return true}

// put some validator response and a return false here - it'll catch empty strings and anything shorter than 11 characters

Brian
Contributor
June 3, 2019

@Nic Brough -Adaptavist- 

I'm trying to adapt your code, any reason why this doesn't work? Behaviour set to a custom field.

def acc = getFieldById("Acceptance Criteria")

if (acc.length() > 50)  {
    ac.setHelpText("The input is too long")
}

else {
ac.setHelpText("")
}
Sam Bartolome
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 8, 2020

@Brian 

Your code is incorrect.

Your variable has different names around the code

The getFieldById is expecting an ID and a name is provided

TAGS
AUG Leaders

Atlassian Community Events