Uploaded image for project: 'Jira Software Data Center'
  1. Jira Software Data Center
  2. JSWSERVER-14705

Ability to sort and customise the columns under the "Issues in Epic" section

    • 26
    • 46
    • We collect Jira feedback from various sources, and we evaluate what we've collected when planning our product roadmap. To understand how this piece of feedback will be reviewed, see our Implementation of New Features Policy.

      Atlassian Update – 20 September 2018

      Hi everyone,

      Thank you for your interest in this issue.

      While this suggestion has gathered significant interest, we're unable to implement all of the excellent suggestions you make. We don't plan to work on this for the foreseeable future. This suggestion will be reviewed in about 12 months time, at which point we’ll consider whether we need to alter its status. The change requires an architecture change that may negatively affect other product areas, especially performance.

      After careful review of the most pressing needs of our customers, we've decided to prioritize other areas of the Jira Server roadmap, some of them including your highly voted suggestions:

      In the recent Jira Server releases we have shipped some highly-voted features and improvements, including:

      • Filters and dashboards collaborative editing
      • Selectable delimiters in CSV export 
      • Microsoft SQL Server 2016 support 
      • iPv6 support
      • Faster Kanban boards
      • Refreshed projects and custom fields management pages in the admin's section 

      We hope that you appreciate our candid and transparent communication. You can learn more about our approach to highly voted server suggestions here.

      To learn more on how you suggestions are reviewed, see our updated workflow for server feature suggestions.

      Kind regards,
      Jira Server Product Management

      It would be nice to have the ability to sort and customise the columns to display under the "Issues in Epic" section inside an issue:

      This way, for example, we would be able to add a "due date" column and sort the list by it.

            [JSWSERVER-14705] Ability to sort and customise the columns under the "Issues in Epic" section

            In my organization so far, 1 ART had many Jira Project projects (1 per each team) which all were connected to the Program Project. In this way it was very easy to which Issue under the epic belongs to which team by just looking at Issue Key ID prefix (as each team project has different Prefix). Now Jira Align also came into picture, with the constraint that 1 ART can have only 1 project. With this now all the stories from all the teams in the ART has same prefix. This brings so much confusion in "Issues in Epic" view to know which story/Issue belongs to which team.  Thus customization of Columns in the "Issues in Epic" view (e.g.) adding team name column, could help solving this Issue.

            Karandeep Singh added a comment - In my organization so far, 1 ART had many Jira Project projects (1 per each team) which all were connected to the Program Project. In this way it was very easy to which Issue under the epic belongs to which team by just looking at Issue Key ID prefix (as each team project has different Prefix). Now Jira Align also came into picture, with the constraint that 1 ART can have only 1 project. With this now all the stories from all the teams in the ART has same prefix. This brings so much confusion in "Issues in Epic" view to know which story/Issue belongs to which team.  Thus customization of Columns in the "Issues in Epic" view (e.g.) adding team name column, could help solving this Issue.

            Considering "This suggestion will be reviewed in about 12 months time" I hope this is reviewed annually. Can this year be the year that Atlassian finally prioritizes it?

            Still looking for fixVersion (and other fields) in a big corp on a per-project basis (so the announcement banner hack doesn't work, unfortunately).

            Jeremy Shaw added a comment - Considering "This suggestion will be reviewed in about 12 months time" I hope this is reviewed annually. Can this year be the year that Atlassian finally prioritizes it? Still looking for fixVersion (and other fields) in a big corp on a per-project basis (so the announcement banner hack doesn't work, unfortunately).

            Hello @Lisa Rossi,

            Please take a look at this page https://community.atlassian.com/t5/Jira-questions/How-do-you-add-a-column-to-quot-Issues-in-Epic-quot-panel/qaq-p/292561#M497517 we are able to accomodate the feature through announcement banner.

            Regards,

            Deepali B

            Deepali Bagul added a comment - Hello @Lisa Rossi, Please take a look at this page https://community.atlassian.com/t5/Jira-questions/How-do-you-add-a-column-to-quot-Issues-in-Epic-quot-panel/qaq-p/292561#M497517 we are able to accomodate the feature through announcement banner. Regards, Deepali B

            Lisa Rossi added a comment -

            It would be really helpful to be able to see the fixed version as a column under "issues in Epic".  

            Lisa Rossi added a comment - It would be really helpful to be able to see the fixed version as a column under "issues in Epic".  

            eevav added a comment -

            Can this feature be considered? We are struggling a lot with organizing work under an Epic, especially to see the sprints that the issues are planned into. Please add the possibility to see the sprint name as a separate column under "issues in Epic" similarly like there is fixversion column

            eevav added a comment - Can this feature be considered? We are struggling a lot with organizing work under an Epic, especially to see the sprints that the issues are planned into. Please add the possibility to see the sprint name as a separate column under "issues in Epic" similarly like there is fixversion column

            Customising and showing "story points" as a column in "Issues in EPIC" is very reasonable.  Are you planning this "Suggestion" issue in product roadmap? 

            Olga Plisko added a comment - Customising and showing "story points" as a column in "Issues in EPIC" is very reasonable.  Are you planning this "Suggestion" issue in product roadmap? 

            Could Atlassian please consider spliting this Suggestion into one for sorting the columns and a separate one for customizing the columns?

            One would think the latter could be achieved relatively quickly with the addition of an Advanced setting, similar to jira.table.cols.subtasks for subtasks...

            S. Francoeur added a comment - Could Atlassian please consider spliting this Suggestion into one for sorting the columns and a separate one for customizing the columns? One would think the latter could be achieved relatively quickly with the addition of an Advanced setting, similar to  jira.table.cols.subtasks for subtasks...

            Daniel K added a comment -

            The ability to show custom columns on "Issues in Epic"; e.g. "Sprint" and "Priority" etc. would be very much in the agile spirit - to have the transparency of exposing available information already on the story/task and be able to plan and readjust plans for the realization of the Epic.

            Daniel K added a comment - The ability to show custom columns on "Issues in Epic"; e.g. "Sprint" and "Priority" etc. would be very much in the agile spirit - to have the transparency of exposing available information already on the story/task and be able to plan and readjust plans for the realization of the Epic.

            I was able to get the priority icon for issues in epics. Use below code in announcement banner

            <script type='text/javascript'>
            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.priority.priority-icon;
            console.log('Got priority column value:- ' + value);
            var actions = AJS.$(row).find('td.issue_actions');
            AJS.$(actions).before('<td class="nav">' + value + '</td>');
            });
            });
            
            });
            </script>

            Thanks.

            Deepali Bagul added a comment - I was able to get the priority icon for issues in epics. Use below code in announcement banner <script type= 'text/javascript' > 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.priority.priority-icon; console.log( 'Got priority column value:- ' + value); var actions = AJS.$(row).find( 'td.issue_actions' ); AJS.$(actions).before( '<td class= "nav" >' + value + '</td>' ); }); }); }); </script> Thanks.

            rayudu added a comment -

            Can you please provide an ETA or update when we may expect this feature? thanks.

            rayudu added a comment - Can you please provide an ETA or update when we may expect this feature? thanks.

              Unassigned Unassigned
              brosa Bruno Rosa
              Votes:
              412 Vote for this issue
              Watchers:
              239 Start watching this issue

                Created:
                Updated: