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