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?