Based on a javascript in https://jira.atlassian.com/browse/JRA-13079 created by Brian Mortenson I created a javascript snippet that you can paste into your announcement banner.
This will allow users easy access to show the list of all subtasks in the issue-navgiator.
From there you can use bulk change as usual.
My users are very happy with this, so I just thought I'd share it were with you.
Kudos to Brian of course!
<script type="text/javascript"> AJS.$(document).ready(function(){ var matches = location.pathname.match(/browse\/([A-Z]+-[0-9]+)/), list, id, item, link; if (matches){ id = matches[1]; list = document.getElementById('subtask-view-options'); if (list) { link = document.createElement('a'); link.href = '/issues/?jql=parent%20%3D%20' + id, link.className = 'aui-list-checked aui-list-item-link', link.title = 'Show and edit subtasks in navigator', link.innerHTML = 'Edit All'; item = document.createElement('li'); item.className = 'aui-list-item'; list.appendChild(item); item.appendChild(link); } } }) </script>
Thanks for this,
For Jira 5.1 change the href for :
link.href = '/jira/secure/IssueNavigator!executeAdvanced.jspa?jqlQuery=parent%20%3D%20' + id,
This no longer works in the OnDemand version of 6.4 for security reasons, is there anywhere else I can insert this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It works in 6.3.4 so I think it will work in 6.3.7
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.
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.