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.
Hi All, Can you please help me on my problem regarding with the Priority (System Field)
Scenario is I like to show/hide custom fields on EDIT ISSUE SCREEN based on the value of Priority . Let's say Priority is set to Priority 1 or 2 upon creation, when the agent changes the Priority 1 or 2 to Priority 3 or 4 , custom fields (related fields for Priority 3 or 4) will come up and be required. If the agent changes Priority 3 or 4 back to Priority 1 or 2, custom fields (related fields for Priority 1 or 2) will come up and related fields for priority 3 or 4 will be hidden and not required.
I am using this code , server-side within the Priority (system field) on the Behavior
Am I working it right? Any suggestions will be very much appreciated. Thank you
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.CustomFieldManager
import com.atlassian.jira.issue.fields.CustomField
def priority = getFieldById(getFieldChanged())
def customField = getFieldByName("Incident Owner")
if (priority.getValue() as String == "Priority 1" || "Priority 2") {
customField.setRequired(false)
customField.setHidden(true)
} else if (priority.getValue() == "Priority 3" || "Priority 4) {
customField.setHidden(false)
customField.setRequired(true)
}
Resolved.
if (priority.getValue() as String == "Priority 1" || priority.getValue() == "Priority 2")
if (priority.getValue() as String == "Priority 1" || "Priority 2")
or function not working, when only set to Priority 1, it works. can someone help?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.