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

Is there a way to auto open the issue after creation so subtasks can be immediately added?

JanaW
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.
February 21, 2013

When we create an issue and submit, it creates it and then gives you a brief pop up box to select it and open the issue. If you don't select that option quick enough we have to search for the issue and then open it. We would like the have the option to open the issue immediately upon creation so that we can add subtasks. If that is possible with a configuration setting, can it be done by project or would it be global, our preference would be by project.

14 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

2 votes
Answer accepted
Dieter
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 18, 2013
You could vote for https://jira.atlassian.com/browse/JRA-28758 which also contains some workarounds to restore the issue creation behaviour from JIRA 4.4 which opens the view screen for the newly created issue

IMHO this was better definitely faster. Whoever had to select from more than 900 projects in the popup create screen knows what i am talking of ...

ok, this solution is just appropriate if you want to restore old behaviour without pop up create screen

3 votes
Karl Roth June 1, 2014

Henning, I have heard so many people complaining about this. Especially those who start editing the wrong issue. In my experience it it MUCH more common (natural?) to work in the new issue than the previous one.

2 votes
Alex Perez
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.
May 15, 2013

Is this issue fixed?

There are some bug reports about the create issue lighbox but in my opinion, the main problem is that the navigation flow changed and the users feel dissapointed for the extra step to view the issue just entered.

IMHO, the correct flow should direct the user to the "view issue" screen, unless "create another" flag is selected.

Henning Tietgens
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.
May 15, 2013

IMO this depends on the point of view.

If the JIRA workflow and the screens are well designed there are a lot of situations where the user who creates the issue doesn't have to open the issue right after creating it. All needed information was added and the next action could already be triggered on the create screen (e.g. assign to the next responsible). E.g. for a support team this is very nice, because the user can work on an issue, take a call, create a new issue, which is proccessed later, and still stays on the issue which is currently in progress.

IMO it would be nice if this is configurable, maybe as part of the workflow.

Henning

Karl Roth June 2, 2014

This behaviour is different from when you CLONE an issue, then you jump automatically into the new one.

I prefer that behaviour, but yes - configurable is the most interesting setup.

1 vote
Ian Springer April 6, 2018

I extracted the guts of Andrew Heald's Issue Quick Start plugin and converted it to a userscript, which will be easier to install than the plugin, since it doesn't require any changes to the JIRA server. It will also probably work on OnDemand/Cloud. Note, I have only tested it with JIRA 7.8.2 self-hosted.

Here's the userscript. You'll need to change the @match to your JIRA URL. Then install it using Tampermonkey.

// ==UserScript==
// @name JIRA Issue Quick Start
// @namespace http://tampermonkey.net/
// @version 0.1
// @description after creating a new issue, automatically open that issue (based on https://marketplace.atlassian.com/plugins/uk.org.sappho.jira.plugin.jira-plugin-goto-new-issue/server/overview)
// @author Andrew Heald
// @match https://jira.example.com/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

console.log('issue-quick-start: Initializing...');
AJS.$(document).on('DOMNodeInserted', function(event) {
if (event.target.id == 'aui-flag-container') {
console.log('issue-quick-start: Got post-it note!');
AJS.$(event.target).on('DOMNodeInserted', function(event) {
console.log('issue-quick-start: Post-it HTML: ' + event.target.innerHTML);
var postItLink = AJS.$(event.target.innerHTML).find('a');
var postItPath = postItLink.attr('href');
if (postItPath && postItLink.attr('data-issue-key')) {
console.log('issue-quick-start: Going to new issue path ' + postItPath);
window.location = postItPath;
}
});
}
});
})();
Victor Combal-Weiss October 5, 2018

Thank you VERY much!

Thanks to you I also discovered Tampermonkey, this is great!

1 vote
Kevin Mote
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 27, 2014

I posted a solution in this Answer which works for version 5.1.

This feature is also available as a plugin: Issue Quick Start which works with versions 5.0 through 5.2.11. I just installed the plugin and ... so far, so good.

UPDATE: Plugin still works on JIRA 6 and JIRA 7. SECOND UPDATE: No longer works on 7.0.

THIRD UPDATE: Andrew Heald has released a new version of his plugin that works on JIRA7 (and should be compatible with JIRA6 as well). I just installed it and it works perfectly! Give it a try!!

Karl Roth June 1, 2014

Still problem with OnDemand.

Ian Springer April 6, 2018

I extracted the guts of Andrew Heald's Issue Quick Start plugin and converted it to a userscript, which will be easier to install than the plugin, since it doesn't require any changes to the JIRA server. It will also probably work on OnDemand/Cloud. Note, I have only tested it with JIRA 7.8.2 self-hosted.

Here's the userscript - you'll need to change the @match to your JIRA URL. 

// ==UserScript==
// @name JIRA Issue Quick Start
// @namespace http://tampermonkey.net/
// @version 0.1
// @description after creating a new issue, automatically open that issue (based on https://marketplace.atlassian.com/plugins/uk.org.sappho.jira.plugin.jira-plugin-goto-new-issue/server/overview)
// @author Andrew Heald
// @match https://jira.example.com/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

console.log('issue-quick-start: Initializing...');
AJS.$(document).on('DOMNodeInserted', function(event) {
if (event.target.id == 'aui-flag-container') {
console.log('issue-quick-start: Got post-it note!');
AJS.$(event.target).on('DOMNodeInserted', function(event) {
console.log('issue-quick-start: Post-it HTML: ' + event.target.innerHTML);
var postItLink = AJS.$(event.target.innerHTML).find('a');
var postItPath = postItLink.attr('href');
if (postItPath && postItLink.attr('data-issue-key')) {
console.log('issue-quick-start: Going to new issue path ' + postItPath);
window.location = postItPath;
}
});
}
});
})();
1 vote
Akeles
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.
February 24, 2013

Agreed. Is there any issues that we can vote for?

JanaW
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 11, 2013

This appears to be fixed in the 5.2.7 upgrade. We just upgraded and now the issue opens after creation.

JanaW
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 17, 2013

As it turns out, this is not fixed in 5.7

0 votes
Corentin Méhat
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, 2017

Hello,

(both tested ok with JIRA Server 7.2.2)

looking around this I found 2 different ways of doing so (to integrate in a plugin or in the banner):

AJS.$("#create_link").removeClass("create-issue");

cf. : https://confluence.atlassian.com/jirakb/how-to-disable-create-issue-popup-300813780.html

 

or the plugin "issue quick start" (also in js):

https://marketplace.atlassian.com/plugins/uk.org.sappho.jira.plugin.jira-plugin-goto-new-issue/versions

0 votes
Kevin Mote
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 2, 2016

A plugin for JIRA 6 & 7 is now available. See my answer below for details and link.

0 votes
Wayne Walker February 22, 2016

Like Bob and others, I find the new behavior extremely frustrating.  

However, in my browser, I've found a work around for the popups.  I either middle click on the Create button, or I right click and select open in a new tab.  Either of these gets the "light box" on its own page and makes the popup go away.  Unfortunately, you are still stuck with the narrow entry problem. 

0 votes
Daniel Santos
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 31, 2015

This solution also works for JIRA7: Disable the new Issue Creation dialog in JIRA 5.0

Kevin Mote
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.
February 25, 2016

The solution you linked to does not address the problem described by the Original Poster.

Daniel Santos
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 1, 2016

Hi @Kevin Mote, could you help me understand why this solution do not address the poster problem?

Kevin Mote
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 1, 2016

The problem described on the page you linked to occurs as soon as the user hits the Create button. The problem described on this page occurs after the user creates the ticket and then hits Submit. Two totally different issues.

Daniel Santos
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 1, 2016

After the above suggested change, when you submit the ticket it is automatically opened. Since no banner is shown and the new created issue is automatically opened I understand it as a possible solution for the posted problem.

 

Kevin Mote
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 1, 2016

I guess, strictly speaking, that's true (assuming that your linked solution doesn't change pages after the Submit button is pressed. I haven't tested it). I will remove my down-vote.

Daniel Santos
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 2, 2016

Yes, I tested that. Thanks!

 

0 votes
Gordon Kotik October 29, 2015

I also agree. My software team finds this new behavior very frustrating. It causes many mistakes such as attaching files to the wrong issue.

0 votes
JanaW
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 11, 2013

This appears to be fixed with the jira 5.2.7 upgrade. We just upgraded and now the issue opens upon creation.

0 votes
Henning Tietgens
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.
February 24, 2013

I think the use case is that all needed information is captured on the create screen. Our support line, where there are some users working as a dispatcher, love this because they are not visually interrupted while working on there current issue.

But it should be configurable on a user basis.

0 votes
Bob Swift OSS (Bob Swift Atlassian Apps)
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.
February 22, 2013

I agree. The change that was made to JIRA a few releases back to do this is very frustrating. I can understand doing this when working from a list but not when on viewing another issue. A high percentage of time I want to look at the newly created issue and add links or similar. If I don't catch it before it disappears it is painful to go find it. If I really DO want to get back to the original issue I was looking at, it would just be a simple back button click. I don't know what user case there was for the current behavior :(.

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