Does anybody have a method to move the "people" and "dates" widgets from the issues page in Jira? These widgets take up a lot of real estate on the right side of the issues page. If they were listed across the top or had a smaller a smaller ares to themselves in the right that would be great. This can be seen when viewing any issue in Jira.
Thanks!
Removing the following lines from viewissue.jsp will hide them:
<ww:property value="/peopleHtml" escape="false"/>
<jsp:include page="/includes/panels/issue/view_dates.jsp" />
Showing the fields under custom fields is a bit more tricky. Check out this thread for some details.
Well I just realized that you can put the above two lines wherever you want to display those fields. So if you pu them under description, i.e. below:
<%@ include file="/includes/panels/issue_descriptiontable.jsp" %>
the date and people fields will appear there!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did anyone figure out a solution to this? JIRA's screen real estate use and inflexibility is astonishing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for all the help with this, I am setting up a test copy of out prod system to try them out.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Maybe you could play with a little JavaScript. For example, this...
<script>
AJS.$('#secondary .content').children().appendTo('#primary .content');
AJS.$('#primary').css('width','100%');
</script>
...will append the content of the right hand column to the end of the left had column.
To quickly try this out, you could browse to...
JIRA <tt>Administration | Options & Settings | Announcement Banner</tt>
...and paste the code.
Of course you could do fancier stuff like create some buttons in the command-bar and move the content into an AJS.Dialog or similar.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Tom,
a bit of info you could find in this related answers:
Is it possible to edit the issue view screen layout?
JIRA Date & People Field Position on Screen
You might need to touch CSS and several velocity templates to get the desired view. Jira updates will need reworking...
BR, Markus
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.