Need to add a column in issues of epic. how to do that?
Community moderators have prevented the ability to post new answers.
Hi,
Currently, this is not an out-of-the-box feature. This feature has been suggested, and it is being tracked at https://jira.atlassian.com/browse/JSWSERVER-15655
Other than this, you can use 3rd party apps to enhance the issue link functionality. From the top of my head, some good options are:
I hope that helps.
Cheers,
Melo
You could also hack the code that displays the issues, adding in the display of the fields you want, but I would not recommend that. Apps are a better option for improving linking functions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello everyone for jira server works next.
You can use announcement banner for it.
Script below will add column with issue type name for "Issues in epic" section.
Jira 9
<script type='module'>
AJS.$(document).ready(function() {
AJS.$('#ghx-issues-in-epic-table tr').each(function(){
var row = this;
var issueKey = AJS.$(this).attr("data-issuekey");
AJS.$.getJSON(AJS.contextPath() + '/rest/api/latest/issue/' + issueKey, function(data){
var value = data.fields.issuetype.name;
var status= AJS.$(row).find('td.status');
AJS.$(status).before('<td class="nav">' + value + '</td>');
});
});
});
</script>
for Jira older 8.7 change :
<script type='module'>
on :
<script type='text/javascript'>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Can i add a custom field instead of issuetype?
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.