Hi,
Using Behaviour, how can we check if Security Level field (which is a JIRA System field) is hidden on screen ?
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.
Hi. If this answer helped, please use the check mark to accept the answer. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.