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

Hide custom field when issue in certain status

Hello,

Can somebody help me with this. I need to hide custom filed type (html) when issue arrives in certain status.

I'm trying to do that with Behaviors plugin as following 

import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.ComponentManager;
import com.atlassian.jira.issue.CustomFieldManager;
import com.atlassian.jira.issue.fields.CustomField;
import com.atlassian.jira.issue.IssueManager;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.user.ApplicationUser
import com.onresolve.jira.groovy.user.FieldBehaviours


ApplicationUser currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser();


def issueManager = ComponentAccessor.getIssueManager()
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def cField = getFieldById("customfield_12345")

if (Issue.getStatus() == "TOTO"){
cField.setHidden(true)

}

else {

cField.setHidden(false)

}

But in does not work. I have configure the behavior to my project and custom field as in example here https://scriptrunner.adaptavist.com/latest/jira/behaviours-overview.html?utm_source=product-help 

What I'm doing wrong ?

Thanks in advance !

1 answer

0 votes
Tarun Sapra
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Dec 14, 2018

Hello @oks

When you add a behaviour to a field then the script is triggered when the field is changed. But in your case your hiding the field only when the status changes, thus your script should be triggered on the status change and need not be linked ot the field. 

My suggestion to you is to add the script in the "initializer function" instead of mapping it to a field and for issue object use - 

underlyingIssue

LIke

if (underlyingIssue.getStatus().getName() == "<Your status here>") {
 //hide the field you want
}

Hi, thank you for answer !

I added the script to "initializer function"  instead of field section and changed to 

underlyingIssue

like that 

if (underlyingIssue.getStatusObject().getName() == "MyStatus"){
cField.setHidden(false)
}

But field is still visible when ticket is in "MyStatus" or changed status to "MyStatus"  :(

Tarun Sapra
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Dec 14, 2018

Hello @oks

In order to hide the field you should code

cField.setHidden(true)

But you are writing

cField.setHidden(false)

Oh, sorry . It was (true) indeed in my code, just mistype here ..

@Tarun Sapra Hi!

In this case, the field is hidden on the edit screen, how to hide on the view screen ?

behaviours doesn't work on view screens

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events