I want to show a custom field within the epic screen, where the incidents that are inside the epic are displayed. It's posible?
I have painted in yellow the place where I would like to incorporate the field, it is possible
attached image
Hello @Manuel Villegas
You requirement is pretty common,.
Some duplicate questions with answer from Atlassian
https://community.atlassian.com/t5/Jira-questions/Add-column-to-list-of-issue-in-EPIC/qaq-p/676848
I have read the two post you indicated and I would have to add a script. But I do not know exactly where it should be added
<script type='text/javascript'> AJS.$(document).ready(function() { AJS.$('#ghx-issues-in-epic-table tr').each(function(){ console.log('Found epic table'); var row = this; var issueKey = AJS.$(this).attr("data-issuekey"); AJS.$.getJSON(AJS.contextPath() + '/rest/api/latest/issue/' + issueKey, function(data){ console.log('Got data for - ' + issueKey); var value = data.fields.customfield_10600; console.log('Value - ' + value); var actions = AJS.$(row).find('td.issue_actions'); AJS.$(actions).before('<td class="nav">' + value + '</td>'); }); }); }); </script>
Thanks
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.