I have added a custom text field and moved its location on the default view so that it is underneath the Description heading hoping that it would be placed as a text box underneath this.
Unfortunately this doesn't happen and the custom field is placed under the Details section.
Is there any way to change this?
Can suggest a hack (for JIRA 6.x) (remember to change the custom field id 10400 to what you have in your system.
<script type='text/javascript'> AJS.$(document).ready(function() { var cfcopy = AJS.$('#customfieldmodule').clone(true); if( null != cfcopy) { AJS.$('li[id=rowForcustomfield_10400]').remove(); $(cfcopy).find('li[id!=rowForcustomfield_10400]').remove(); AJS.$('#descriptionmodule').append(cfcopy); } }); </script>
Thanks Renjith.
I presume this means that there is no way to do it through the UI?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think so.
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.
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.