The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
So JIRA has a built in panel for displaying issue links: however these links need to be manually created.
I'd like to use ScriptRunner's Web Panel fragment to generate the exact same type of table except that its results are populated by any/all issues that have any/all of the current issue's labels.
How can I do this?
i know it is an old topic, but did you manage to solve it? if so can you help me out pls, i wanna get all issues with same labels and count them.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK, I think I have the basic starting point out, but I need to know how to:
1) Search for issues
2) Iterate through the results
import com.atlassian.jira.issue.Issue def issue = context.issue as Issue def key = issue.key def summary = issue.summary def labels = issue.getLabels()*.label writer.write("<table class='aui'>" + "<thead>" + "<tr>" + "<th>Key</th>" + "<th>Summary</th>" + "<th>Labels</th>" + "</tr>" + "</thead>" + "<tbody>" + "<tr>" + "<td>" + key + "</td>" + "<td>" + summary + "</td>" + "<td>" + labels + "</td>" + "</tr>" + "</tbody>" + "</table>")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This month the spotlight is on AppLiger. We caught up with Pavel Pavlovsky, CEO and Product Manager, to learn how the company started and what fuels the team's creativity. Atlassian:...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.