Is there anywhere that this is actually visible? I need the ID to fit into Filter search criteria.
I just need a report other than the Active Sprint columns, where I get an easily read list of all the tasks in a specific Sprint.
The hack that I use is:
The query with the sprint id will look something like:
project = XX AND sprint = ID ...
Nice hack and it works perfectly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There might exist multiple active sprints. Try
sprint in openSprints()
You can also write
sprint in (56)
or
sprint in (55,56)
where 55 and 56 are Sprint IDs. To get to know the ID of a sprint, you have two options:
When you are in JIRA Agile Backlog view, open up your browser's console (press F12 in Chrome or Firefox) and run this code in the Console tab:
$=AJS.$;$.map($(".ghx-sprint-group > div"), function(sprint) { return $(sprint).find(".ghx-name").text() + " -> ID=" + $(sprint).data("sprint-id"); })
If you only need the active sprints, run this:
$=AJS.$;$.map($(".ghx-sprint-group > div.ghx-sprint-active"), function(sprint) { return $(sprint).find(".ghx-name").text() + " -> ID=" + $(sprint).data("sprint-id"); })
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Which version are you using?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
no such icon in backlog view
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please look at my edited answer above. If you need more info, please add it as a comment to that post.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In the "Backlog" view, you will find an option to "View in Issue Navigator" along side the sprint name. It is a small icon with 3 small dashes and a rectangle.
When you click on it, it takes you to the issue navigator and the query will have the correct sprint id in it.
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.