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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,468
Community Members
 
Community Events
184
Community Groups

Can't update field with behaviour on create screen

Hello!
I need to update a default value for Description field when the option is selected in another field (Select List (cascading)), when creating issue. 

I created the behaviour and added the field that should be checked when changed, to this behaviour. 

But when I'm trying to create an issue and select the needed option in the Select List field, description field is not updated with the default value. 

Here is my script: 

import com.atlassian.jira.component.ComponentAccessor 
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.issue.customfields.manager.OptionsManager
import com.atlassian.jira.issue.ModifiedValue

def targetField = getFieldByName("Description")
def defaultValue = """[TASKS|]""".replaceAll(/ /, '')
def cField = getFieldByName("Deployment flow")
def selectedOption = cField.getValue().toString()
if (selectedOption == "PHP"){
targetField.setFormValue(defaultValue)
}

 Please help to understand what I'm doing wrong and how to update description when the option is set in my custom field. 

Behaviours - Namecheap Tracker - Google Chrome 2018-06-22 13.08.12.png

1 answer

1 accepted

0 votes
Answer accepted
Roland Holban (Adaptavist)
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.
Jun 25, 2018

Try to put your behaviour script on the Select List (cascading) field rather than in the initialiser

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events