Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article explains how to display Issue matrix Matrix table with borders using the appIssue Matrix for Jira, on Server a server instance.

Instructions

  1. Login to Jira as an Administrator.
  2. Navigate Navigate to  Cogwheel → Issues → custom fields → > Issues > custom fields > Add custom field.
  3. Select All custom fields and Click on All and search for "Issue Matrix" and click on "Next" as shown in the below screenshot.:

  4. Add a name to the custom field (for example example, Issue Matrix_2)
  5. Add the custom field to the respective project screen where it is required:

  6. In the above screenshot, the custom field Issue Matrix_2 is added to the B1 project screens.
  7. Now search for the custom field, which was created in the earlier step.
  8. Click on Configure → Go to Configure > Edit Matrix Configuration → Choose Configuration > Epic and click on Next.
    Image Modified
  9. Configure the below details and click on Save to save the configuration.
    Image Modified
  10. Navigate Go to System → Click > Announcement Banner.

  11. Add the below CSS Script in the Announcement Banner section and modify the custom field ID(Ex: Issue Matrix_2 has ID 10621).

    Code Block
    themeMidnight
    <style type="text/css">
    #issue-list-panel-10621 th {
        border: 3px solid black!important;
    }
     
    #issue-list-panel-10621 td{
        border: 3px solid black!important;
    }
    </style> 
    Note

    If you want the borders to be visible only for a specific issue matrix Issue Matrix table, use the above script with respective issue matrix custom field Id configured.

    Code Block
    <style type="text/css">
    .issue-list-table th{ 
        border: 3px solid black!important;
    }
     
    .issue-list-table td{ 
        border: 3px solid black!important;
    }
    </style>
    Note

    If you want the borders to be visible globally for all the Issue Matrix tables defined, use the above script.

  12. Click Set Banner.

  13. With the above CSS configuration done, below is are the required borders for the Issue Matrix panel.:
    Image Modified