Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Next-gen project only showing items in "To Do" status in the backlog.

Shane Kremer
August 17, 2021

We just migrated from ClickUp to Jira and there were many items that were in various statuses.

 

Our project in Jira is a next-gen project and items have to be manually moved to the board (which I find pretty annoying) to show up. After the migration there are tons of items that are in progress, review, etc. that are in the backlog. I need to move these items to the board, but our backlog is only showing items that are in "To-Do".

 

How can we get our backlog to show items in all statuses and not just the ones in "To-Do". We also have a status called "Discovery", which aren't ready to be assigned. We need items in all statuses to show on the backlog view.

2 answers

1 vote
Puján Z
Contributor
July 18, 2019

Hi,

You can use Adaptivist ScriptRunner plugin to create a Script Field (HTML) that creates a button with /jira/secure/CreateSubTaskIssue!default.jspa?parentIssueId=$parentIssueId

Then add it to the view screen of your (parent) issue. :) Here is an example, if a contact person issue type was of a sub-task type:

def baseurl = com.atlassian.jira.component.ComponentAccessor.getApplicationProperties().getString("jira.baseurl")

String contactPersonIssueTypeId = "11002" //Contact Person
def subtaskCreationUrl = baseurl+"/secure/CreateSubTaskIssue!default.jspa?parentIssueId="+issue.getId()+"&issuetype="+contactPersonIssueTypeId
String createSubtaskLinkLabel = "Add contact person"
String createSubtaskLinkTitle = "Add a new Contact Person for this issue"

def completeLink = "<a id='create_link' class='aui-button aui-button-primary aui-style custom-create-link' title='"+createSubtaskLinkTitle+"' href='"+subtaskCreationUrl+"'>"+createSubtaskLinkLabel+"</a>"
return completeLink

Gábor Budai
October 19, 2021

@Puján Z this works like charm, thanks :) 

0 votes
Marten Kreienbrock
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 Champions.
March 26, 2014

If you create a button which calls /jira/secure/CreateSubTaskIssue!default.jspa?parentIssueId=>Your parent Issue<, the create dialog should open

NTT Europe
April 13, 2014

Hi,

Indeed, the link is perfect, but I am wondering how to add a button.

Many thanks!

Marten Kreienbrock
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 Champions.
April 13, 2014

In this case i'm not sure about any easier ways, but you could create a Web Panel Plugin Module with the location set to "atl.jira.view.issue.left.context". This would provide you with a new panel in the issue details view, which you could either use as location for your button or as a way of injecting some Javascript, which could place a button somewhere next to the other buttons in the upper area of the page.

Suggest an answer

Log in or Sign up to answer