Add column to list of issue in EPIC

Stephanie November 22, 2017

Hi, is that possible if i put a new column beside an developer name?

Current condition is:

ISSUE ID | Issue summary | task status | developer

Here's i put my simple design to describe what i mean.

I try to put the QA's name so after development, we can see the next PIC for test the task.

Thank you :)

simple mockup.png

 

2 answers

2 votes
Andy Heinzer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 27, 2017

Hi Stephanie,

I don't believe there is a way to customize this within Jira itself, at least not without changing some source code or using a plugin for Jira.  

However a related thread appears to have had some success with other users that might be able to use a script as a means to add an additional field for issues there. Please see https://community.atlassian.com/t5/Jira-questions/How-do-you-add-a-column-to-quot-Issues-in-Epic-quot-panel/qaq-p/292561 for more details.

Regards,
Andy

Stephanie November 27, 2017

Hi Andrew, thanks for answering my question. 

Could you please resend the link? because it show as invalid link when i click it. Many thanks!

Andy Heinzer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 28, 2017

Sorry about that, I edited my previous reply to fix the link, but here it is once more as well:  How do you add a column to "Issues in Epic" panel

Like Filipi Lima likes this
1 vote
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'>

Suggest an answer

Log in or Sign up to answer