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
Hi,
I have 3 tabs that I display and out of the 3 tabs, 2 tabs are disabled by default using the following script in Behavior.
disableTab(1)
disableTab(2)
Now, I want to enable Tab 1 from the Behavior ScriptRunner only if the workflow status is "Ready". Here is the below code:
import com.atlassian.jira.component.ComponentAccessor
def issue = ComponentAccessor.getIssueManager().getIssueObject(underlyingIssue.getKey())
if (issue.status.name == "Ready" ) {
switchTab(1)
disableTab(2)
} else {
disableTab(1)
disableTab(2)
}
The above code does not work.
Can anyone assist?
Thanks,
KP
"underlyingIssue" is an issue. So you don't need to convert it.
The problem is that on a create screen, underlyingIssue doesn't exist. But we can protect against that using the nullsafe operator (?)
So this should work:
if (underlyingIssue?.status?.name == "Ready" ) {
switchTab(1)
disableTab(2)
} else {
disableTab(1)
disableTab(2)
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.