Need to add a column in issues of epic. how to do that?
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.
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'>
Hi,
Can i add a custom field instead of issuetype?