Adding Custom Tabs in Jira.
This is one of my tutorials regarding the enhancement in the Jira application. There are limited number to tabs in the Jira Application, but what if we need to add or change the tabs in the application. Its really very simpl, we need to add a short snippet in the existing code of Jira.
<web-item key="new_tab" name="New Tab Link" section="system.top.navigation.bar"> <label key="NEW TAB" /> <tooltip key="new tab" /> <link linkId="usermgmt_link" >/action.jsp</link> </web-item>
Where, action.jsp is the action page where all the contents for New Tab can be written.

