Forums

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

Setting a Customfield value in ScriptRunner Behaviour

Peter Ellis May 13, 2019

We are using a ScriptRunner Behaviour to ensure there is a default value in a single choice select list. We are using this method as the form has a lot of other validation on it and this particular select field is also only displayed based on another field value.

We have tried both examples below but neither work, any suggestions?  

def textField5 = getFieldById("customfield_17221")
def selectListValue = selectList.getValue()

if (selectListValue == "Partner") {

getFieldById("customfield_17221").setFormValue("ITL3")
textField5.setFormValue("ITL3")

}

2 answers

1 accepted

0 votes
Answer accepted
Tansu Akdeniz
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 13, 2019

Hi @Peter Ellis ,

I couldn't understand what you try to achieve with that script. You read the value from customfield_17221, than set the same customfield value with ITL3. 

Regards

Peter Ellis May 13, 2019

The variations of what has been tried,

def textField5 = getFieldById("IT Level")
def selectListValue = selectList.getValue()

if (selectListValue == "Partner") {

textField5.setFormValue("ITL3")

}

and

def textField5 = getFieldById("customfield_17221")
def selectListValue = selectList.getValue()

if (selectListValue == "Partner") {

getFieldById("customfield_17221").setFormValue("ITL3")

}

Tansu Akdeniz
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 13, 2019

Following script may help if you would like to set another field based on the origin field value. 

def firstField = getFieldById("customfield_17221")
def secondField = getFieldById("customfield_17222")

String firstFieldVal = firstField.getValue()

if (firstFieldVal.equals("Partner")) {
secondField.setFormValue(10000) // Ex option of ITL3
} else {
secondField.setFormValue(null)
}  
Peter Ellis May 14, 2019

Brilliant, that worked!! Many thanks :-)

Tansu Akdeniz
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 14, 2019

You are welcome @Peter Ellis , glad to hear that :)

0 votes
Ben Poulson
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.
May 13, 2019

What do you mean by "doesn't work"? Does the code execute and not update the field? Does it throw an error? What type of data is contained in the field (free text, number, date, preset options, etc.)?

Peter Ellis May 13, 2019

The code executes but does not update the field. No errors are thrown up and both fields are preset options....

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events