You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
How to remove Create another checkbox in create issue popup?
Hi Ed,
You can achieve this by adding the following javascript:
<script type="text/javascript"> (function($) { AJS.toInit(function(){ // init on load AJS.$("#qf-create-another").hide(); AJS.$("label.qf-create-another").hide(); }) JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e, context) { // init on refresh AJS.$("#qf-create-another").hide(); AJS.$("label.qf-create-another").hide(); }); })(AJS.$); </script>
About where to place the code, you can follow the documentation below:
https://confluence.atlassian.com/pages/viewpage.action?pageId=317950124
Tested on my instance working [Jira 6] :) Cheers
In create issue popup there is a checkbox (Create another) before create button button. I want that checkbox to remove.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Ed,
As far as I know that this is not possible within JIRA. In order to achieve what you require you may want to go and customize JIRA code in order to hide the checkbox.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Ed,
Can you please explain your question further? What Create another checkbox are you referring to?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
It is possible to remove the "create another" when you want to create a ticket please :
Please help.
Thanks,
BR
Fayçal
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.