Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.