Field validation to allow integers only without mandatory field

Lakshmi S May 12, 2023

Hi Team,

We would like to validate the numeric value like 50000 or 201203, etc on the single-line text field. I tried to use a "Simple scripted validator" in workflow validator and applied the below condition. It's working, but we do not want this field as mandatory. It's validating the field, but it's not allowing to create of the ticket without entering the value. Is there any option to make this field validation without mandatory?

cfValues['Cost at Approval'] ==~ /^[0-9]*$/

 

2 answers

1 accepted

1 vote
Answer accepted
David Fischer
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 12, 2023

Hi @Lakshmi S ,

Using JMWE's Scripted Validator, you can use this script:

!issue.get("Cost at Approval") || issue.get("Cost at Approval") ==~ /^\d+$/
Lakshmi S May 15, 2023

Thank you @David Fischer Its working as expected.

0 votes
Karim ABO HASHISH
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 12, 2023

hi @Lakshmi S 

could you please try with this expression 

/^[0-9]{0-n}$/

it allows for empty value.

it should normally work on Cloud version but I didn't test it on the server version.

Let me know how it went for you.

Cheers,

Karim

Suggest an answer

Log in or Sign up to answer