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,893
Community Members
 
Community Events
185
Community Groups

How to set default value for custom field only on Create screen?

I'm trying to use Behaviours plugin to set default value for some custom fields when create issue. 

I created Behaviour and added script

import com.atlassian.jira.component.ComponentAccessor
def tasksFld = getFieldByName("Tasks")
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def customField = customFieldManager.getCustomFieldObject(tasksFld.getFieldId())
def defaultValue = """[Tasks|https://]""".replaceAll(/ /, '')

if (getFieldScreen().name == "RM CreateScreen 2.0") {
tasksFld.setFormValue(defaultValue)
}

 but I did not get needed result - seems like condition 

getFieldScreen().name == "RM CreateScreen 2.0"

never works. It does not put value to field when issue created and screen "RM CreateScreen 2.0" is used.
Am I doing something wrong?
Maybe there is another method to restrict behaviours only for create issue operation? Or don’t overwrite the custom field if it already exists?

2 answers

1 accepted

0 votes
Answer accepted

resolved with 

if (getAction()?.id != 1) {
return // not the initial action, so don't set default values
}
1 vote
Alexey Matveev
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.
Nov 08, 2017

Hello, 

I guess the problem is with getFieldScreen().name == "RM CreateScreen 2.0". Are you sure that your create screen is called "RM CreateScreen 2.0"? You can verify it by logging the name of the screen in the behavour. For example you could add to the beginning of your behavour log.error("getFieldScreen().name") and have a look in atlassian-jira.log what the name of the screen is.

But do not do it. Better use another function which is getActionName(). This function always returns the transition name. In your case it will be "Create Issue". Try to replace your code with this one:

if (getActionName() == "Create Issue") {

tasksFld.setFormValue(defaultValue)

}

It must work. 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events