Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Scriptrunner Validator Issues

John Elnaugh October 6, 2017

Hello All,

I am having some issues with a scripted validator, I am probably being thick and it's right in front of me but I can't seem to get to the bottom of it.

I am looking to validate a Drop Down Custom Field and Two Custom Number Fields.

So far I am using :

 

if ( cfValues['DropDownField']?.value == 'Value' ) {

    if ( cfValues['Number Field 1'] == '0' ) {

        return false

    }

    if ( cfValues['Number Field 2'] == '0') {

        return false

    }

 }

else if .............

else ( return true )

 

I am using the Simple Script Validator.

 

Does anybody have any pointers?

 

 

 

 

 

 

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
1 vote
Answer accepted
Jenna Davis
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.
October 6, 2017

Hello, 

If you're using this on a number field, you need to compare your numbers like this:

cfValues['Number Field 2'] == 0

Using single quotes around the number makes it read as a String, where as not putting quotes here will make it read as an integer.

I think everything else looks alright, but if it's still giving you problems please don't hesitate to let me know!

Jenna

John Elnaugh October 6, 2017

Hey Jenna, 

Thanks for the response, I have changed that out in my validation script, however now it is not allowing it through even though the values of both of the number fields are not zero and the select list is == 'Value'.

Are there any gotchas when attempting to query a select list?

Just to make sure as well, the validation field does support if arguments?

John Elnaugh October 6, 2017

I've just been double checking and running some tests.

 

I appears that the first part of the validation is being evaluated, so that:

if ( cfValues['DropDownField']?.value == 'Value' )

Will not allow the transition to occur, but when the field value is not 'Value' it will continue.

It does not seem to go into the if function to evaluate the number fields, it looks like it just stops there.

Jenna Davis
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.
October 6, 2017

That is the correct way to query a single select list.

When the select list is not equal to 'Value' it makes sense that  it will return true from the code snippet you have above. If you want it to return as 'true' when 'Value' is selected and neither of your number fields equal '0', you need to explicitly return true at the end of that 'if'. 

I've written a shorter version of what you're doing to test this out and make sure it works:

if(cfValues['Drop Down']?.value == 'Value1'){
if(cfValues['Number'] == 0){
return false
}
return true
}
else{return true}

This will return true for all cases except for when my 'Drop Down' field equals 'Value1' and my 'Number' field equals 0.

If you continue to have issues getting this to work, could you send me the entire script that you're using currently so I can check it?

Jenna

John Elnaugh October 6, 2017

Gotcha, that looks like it's working now, It was the nested return true that I missed off.

I see where I was going wrong there.

Thanks for the help, much appreciated!

Ankit Patel May 9, 2018

@Jenna Davis I am trying to validate a custom number field . ex. I want to validate transition only if the Budget field has a value of "20" or more... how do I achieve this? 

 

Thanks
Ankit

TAGS
AUG Leaders

Atlassian Community Events