You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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
]*$/
Hi @Lakshmi S ,
Using JMWE's Scripted Validator, you can use this script:
!issue.get("Cost at Approval") || issue.get("Cost at Approval") ==~ /^\d+$/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.