Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How Can i disable "Configure Fields" button on first screen of creating issue, to all users ?

Derrick F March 13, 2012

How Can i disable "Configure Fields" button on first screen of creating issue, to all users ?

11 answers

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

2 votes
grundic
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 4, 2012

I suppose, you have to bind NEW_CONTENT_ADDED event, like this:

<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>

But again, like Jobin said, if users hide some fields, they can't be shown.

Alternatively, you can try to remove (make backup copy first!) a quick edit plugin from %JIRA_DATA%/plugins/.bundled-plugins/jira-quick-edit-plugin-1.0.41.jar. I have not tested it but this should make Jira to show standard Create Issue dialog (a-la http://you_jira/secure/CreateIssue.jspa).

Hope, it helped.

Jason Brison
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 12, 2012

Thanks Grigory - We have been trying for hours now to be able to add content next to the fields on this dialog box with no success, but with your above example we were able to finish within minutes.

Thanks so much! you get an upvote :)

Renjith Pillai
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 5, 2013

And remember, everytime you restart JIRA it will get recreated. So to make the solution permanent, remove it from atlassian-jira/WEB-INF/classes/atlassian-bundled-plugins.zip

0 votes
Renjith Pillai
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 16, 2013
VenugopalY January 16, 2013

Hi Ranjith,

I want to keep the Create issue screen. Need to Disable Configure Field Button. I want all users show see all the available options. Avoid Hide some Fields.

Renjith Pillai
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 19, 2013

In fact just showing them all fields does not help, if you need them to fill in, make them mandatory.

0 votes
tpham July 4, 2012

I tried to remove the plugin.jar file, but then it is added back whenever I start the app, any ideas?

grundic
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 4, 2012

then it have to be removed from %JIRA_HOME%/atlassian-jira/WEB-INF/classes/atlassian-bundled-plugins.zip. Just unzip, remove that plugin and pack back. Make backup before this operation!

VenugopalY January 15, 2013

Can you please let me know the correct plugin name under above path. Do i need to restart JIRA?

grundic
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 15, 2013
unzip -l atlassian-jira/WEB-INF/classes/atlassian-bundled-plugins.zip | grep quick-edit
    81638  2012-05-31 22:04   jira-quick-edit-plugin-1.0.41.jar

I suppose this one. Also take a look at top of this thread, there is my accepted answer.

0 votes
tpham July 4, 2012

Has anyone got solution for this please?

0 votes
Michael Poeschl July 2, 2012

No hints or new ideas around that?

We are also locking for a solution on that.

When I find something, I will place it here as well.

0 votes
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 27, 2012

You can probably just hide it with some JS:

AJS.$("#qf-field-picker-trigger").hide()

(untested, something like that though).

Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 27, 2012

Its a great idea but if some had already confgiured it to use custom view (with only couple of fields selected), they wouldn't be able to change it back to all view ;) I am sure you can do that too with JS but just highlighting it..

MattS
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 27, 2012

Actually, it may be more core than we realize and that's why it can't be disabled

S May 13, 2012

The JS doesnt seems to work consistently. It opens up the issue create dialog without configure fields option. But once you change the issue type configure fields reappears irrespective of whether the selected issue type's field configuration has the java script or not.

Is there any other way? May be delete it from the jsp page itself???

0 votes
MattS
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 26, 2012

This functionality is provided by the system Quick Edit Plugin but under Plugins, System there is no Disable button provided to stop it being used.

0 votes
Derrick F March 14, 2012

Yes, it's in JIRA 5 creating issue screen ... I need to hide this button ... Thanks

0 votes
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 13, 2012

Its in JIRA5. A new feature to show only the fields a user is interested in, while creating an issue.

0 votes
Radek Kantor
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 13, 2012

There is no such button on create issue screen, at least in JIRA v 4.4.3

0 votes
Dave Donnelly [Sensata]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 13, 2012

Can you add a screenshot of what you are referring to?

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

TAGS
AUG Leaders

Atlassian Community Events