Is it possible to increase the display widht of the field "Project" in the "Create Issue" screen in JIRA. Our project names are too long to be shown completely in the field with the default length.
using javascript you can do it, check this post
https://answers.atlassian.com/questions/193234/increase-the-width-of-project-field
sample code
<script type="text/javascript"> jQuery(document).ready(function($) { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) { callFunction(); }); callFunction(); function callFunction(){ $('#project-single-select').css('max-width','500px'); $('#project-single-select').css('width','500px'); $('#project-field').css('max-width','500px'); $('#project-field').css('width','500px'); } }); </script>
add the above script in announcement banner
Thank you.
Thanks this helps in increasing the widht of project...how to increase width of issue type.
@Neeta, i have posted answer on your question
https://answers.atlassian.com/questions/247995/increase-width-of-project-and-issue-type-box
>>add the above script in announcement banner
HI. Can any one tell me how to do it?
........./secure/admin/EditAnnouncementBanner.jspa
The result here in our cloud version is this...but why?
image2016-10-21 15:37:5.png
Is there any chance that Atlassian is fixing this? I just took a look in the current server version and it still looks the same - without any reason since the drop-downs that are used some rows beneath this are also bigger.
Also - this script does not seem to work with the current version of JIRA :-(
It looks like you're new here. Sign in or register to get started.