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 :)
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
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!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.