For some reason it seems that the conditional statements are not working correctly to hide UI elements. I love the features these fragments can provide but changes I make seem to always take place globally. currently I am using:
!jiraHelper.project?.key == "EDCO"
to try and have it show only projects other then issue key EDCO. I've tried both with and without the "not" in from of the statement and the results are always the same. Are there any examples of how to better utilize this? Another state ment I've tried that doesn't seem to work is:
issue.issueType == "Milestone"
Maybe there is some core thing I'm missing with conditional statements for use of these web fragments.
Your first condition should be:
jiraHelper.project?.key != "EDCO"
It will then show for all projects apart from the project with key EDCO
Similarly the second condition needs to be:
issue.issueType.name == "Milestone"
It will then show for only issues that are of type Milestone.
If the condition is true then the UI element will be displayed.
Ah, so the first one is a syntax error.
The second one is because "issue.issueType" name is returning an object?
Perfect, Thank you for the help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Steven - yes, you can find the javadoc at https://developer.atlassian.com/static/javadoc/jira/latest/reference/com/atlassian/jira/issue/issuetype/IssueType.html.
It's helpful to execute the conditions and "log.warn()" the return values, so you can see this.
For your first one you could have written :
! (jiraHelper.project?.key == "EDCO")
but the way Adam demonstrated is more usual.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you both Adam and Jamie. It turns out to be a simple question, but great customer service from Adaptavist as always.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome, and thank you for that.
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.