How to add column in "issues of epic"

Vaisakhan G R January 21, 2022

Need to add a column in issues of epic. how to do that?

2 answers

Suggest an answer

Log in or Sign up to answer
1 vote
Melo
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 21, 2022

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

Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 21, 2022

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.

Like Melo likes this
0 votes
Pavel Kapinos November 16, 2022

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'>

Yogesh Rajanala
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 30, 2023

Hi,

Can i add a custom field instead of issuetype?

TAGS
AUG Leaders

Atlassian Community Events