The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Behavior to require one of three custom fields not be null

jonathan.fears
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 9, 2021

I have a behavior that checks the value of a custom field and determines if other custom fields should be visible.  There is an initializer that hides them initially.  In addition, it checks that at least one of the three custom fields is not null. 

The code below works in throwing the error, but once the user enters a value for one of those fields, the error does not go away and the issue cannot be updated.  I'm not sure what I'm doing incorrectly.  Any help is appreciated!

 

def Cust_fieldValue = Cust_fieldID.getValue()
def SIE_fieldValue = SIE_fieldID.getValue()
def CFI_fieldValue = CFI_fieldID.getValue()
def SFDC_fieldValue = SFDC_fieldID.getValue()

if (Cust_fieldValue == "Yes") {
SIE_fieldID.setHidden(false)
     CFI_fieldID.setHidden(false)
     SFDC_fieldID.setHidden(false)

     if (!SIE_fieldValue && !CFI_fieldValue && !SFDC_fieldValue) {
          Cust_fieldID.setValid(false)
          Cust_fieldID.setError("An SIE, CFI or SFDC is required")
     }
    else {
         Cust_fieldID.setValid(true)
         Cust_fieldID.clearError()
     }
}

 

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Adrien Low _ServiceRocket_
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 Champions.
December 24, 2021

Hey @jonathan.fears ,

If the above script is placed only in your Initialiser, the script would only run once upon screen load while in the Create/Edit screen.

Which is why subsequent edits to your other custom fields will not do anything.

You will probably need to configure a script for each custom fields separately so that it could detect whenever changes are made to a custom field.

Regards.

TAGS
AUG Leaders

Atlassian Community Events