Degraded performance Customers may experience intermittent errors using Community search. Our platform vendor is investigating.
It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I have a project "IT Checklist" with issue types as Daily Checklist, Weekly Checklist.....Yearly Checklist.
I have a behaviour which sets the summary based on the issue type selected and the date selected.
The behaviour is working fine on Create issue screen but is not working on Edit issue screen.
This behaviour is set of Issue Type field and has a mapping for each of the issue types of this project.
IT Checklist (Daily Checklist)
IT Checklist (Weekly Checklist)
etc...
The script is as below:
import com.onresolve.jira.groovy.user.FieldBehaviours
import com.onresolve.jira.groovy.user.FormField
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.*
String selectedIssueType = getIssueContext().getIssueTypeObject().getName();
FormField checklistDateField = getFieldById("customfield_16706")
def checklistDate = checklistDateField.getValue();
def summaryToSet = selectedIssueType + " - " + checklistDate;
FormField Summary = getFieldById("summary");
Summary.setFormValue(summaryToSet)
As you can see, I am using getIssueContext().getIssueTypeObject(), which according to the few previous answers I went through should be available on both Create and Edit screens. However, it doesn't seem to work.
Will appreciate help.
An update.
Just discovered that the script is not even working on Create screen. I just realised that I was getting desired summary not because I changed issue type, but because it loads full form and I have similar script on another field (Date).
I essence, above script is not working either on Create or Edit.
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreAs a Jira power user, I was at first doubtful that Trello could benefit my workflow. Jira already uses boards (ones you can customize!), so why would I even need to use Trello?! In this post you will...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.