We are evaluating Jira 5.0.7 and have noticed new functionality on the Issue Create/Edit screens in the form of a button called Configure Fields that allows a user to display All or a Custom list of fields on the form.
We would like to disable this functionality so that each Issue Create/Edit form always displays All fields.
i.e. We do not want users to be able to define a custom view.
Is this possible?
You can possibly remove this by using some scripting in the Announcement Banner. However, before doing so, you'll need to ensure all users currently are showing all fields. By removing the button, if the users have configured to only display certain fields, they won't be able to switch back to show all fields. Anyway, if you wish to do it, I believe you can use the script below in the Announcement Banner:
<script type="text/javascript"> (function($) { AJS.toInit(function(){ // init on load AJS.$("#qf-field-picker-trigger").hide(); }) JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e, context) { // init on refresh AJS.$("#qf-field-picker-trigger").hide(); }); })(AJS.$); </script>
Another option, is to disable the 'Quick Create' popup screen, to use the old-style create issue page. This way, all fields will be displayed to all users as in JIRA 4.4. To do so, you'll need to use the following in the Announcement Banner:
<script type="text/javascript"> AJS.$("#create_link").removeClass("create-issue"); </script>
I hope this helps!
These scripts were provided here:
- Remove the Configure Fields button
- Disable the Create Issue popup
Cheers,
Matheus Fernandes
Oh dear, how I would love to be able to do this!
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.