You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
Try to put your behaviour script on the Select List (cascading) field rather than in the initialiser
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.