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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks this helps in increasing the widht of project...how to increase width of issue type.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Neeta, i have posted answer on your question
https://answers.atlassian.com/questions/247995/increase-width-of-project-and-issue-type-box
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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 :-(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
>>add the above script in announcement banner
HI. Can any one tell me how to do it?
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.