Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to check if Security Level field is hidden on screen using Behaviour Script Runner ?

Paridhi Agarwal March 8, 2018

Hi,

Using Behaviour, how can we check if Security Level field (which is a JIRA System field) is hidden on screen ?

1 answer

1 vote
Kyle Moseley
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.
March 11, 2018

 

This is rough so you would want to flesh out the logic, but in general this should work.

import com.atlassian.jira.component.ComponentAccessor

def issue = getUnderlyingIssue()
def sec = getFieldById("security")

log.debug issue?.getSecurityLevelId().toString()
log.debug sec?.getValue().toString()

if (issue?.getSecurityLevelId().toString() == sec?.getValue().toString()) {
log.debug "Security Level not hidden"
} else {
log.debug "Security Level hidden"
}

 

There are other approaches (like using the Field Config API) but I think this one is very simple.

Kyle Moseley
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.
March 20, 2018

Hi. If this answer helped, please use the check mark to accept the answer. Thanks!

Suggest an answer

Log in or Sign up to answer