Hi,
Is it possible to display a header above the Sub-Task column view when displaying a parent issues view screen? The header should simply list the column name.
br
Peter
Put this in announcement banner
<script type='text/javascript'> AJS.$(document).ready(function() { $('#issuetable').prepend('<thead><tr><td></td><td>Summary</td><td>Type</td><td>Status</td><td>Assignee</td><td>Progress</td><td>Order</td><td>Actions</td></tr></thead>'); }); </script>
Hi - Here's an updated script. I had to add AJS. in front of $('#issuetable').
<script type='text/javascript'>
AJS.$(document).ready(function() {
AJS.$('#issuetable').prepend('<thead><tr><td></td><td>Summary</td><td>Type</td><td>Status</td><td>Assignee</td><td>Progress</td><td>Order</td><td>Actions</td></tr></thead>');
});
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I believe that this is what you are looking for?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for the answer, and it was indeed what I asked for. However I should of course had mentioned that we are using JIRA 4.4.5 (soon upgrading to 5.2.x), and the solution you found is only applicaple pre 4.4.
Kind regards
Peter
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.