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.
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.