Is there an ability to create JIRA gadget that shows my total month worklog for 2 projects?
Or you can create your own plugin with required gadgets using this book: "JIRA 5.x Development Cookbook" by Jobin Kuruvilla. It was useful for me
You can do this Tempo. First create a saved search for your two projects. Then view them in the Advanced Timesheet.
Related
Do we have any rest API or JQL query to execute which would fetch all the issues in a project having 0 or more issue links?
In Jira Cloud using "numberOfLinks" parameter we could fetch all the issues having issue links. But how do we fetch all the issues consisting of issue links in Jira Server/Datacenter?
Thanks & Regards,
Preethi H R
You can use the JQL query:
issuefunction in hasLinks() and project = XXX
That's show you all the issue in XXX project that has 1 link or more.
XXX = your project key
If you want to see all issues that doesn't have any links you can use:
issuefunction not in hasLinks() and project = XXX
I have several dashboards in JIRA and want to create a central one where there is a filter or gadget that will display links to the other dashboards. Is this possible?
You may save all of these dashboards' URLs and show them inside a gadget in your main dashboard.
Let's say one of your "other dashboard"s link is: your-jira-url.com/secure/Dashboard.jspa?selectPageId=10000
Then, you can add a new gadget (like Text plugin which can show HTML) and add following HTML in that gadget:
Link to the other dashboard
However, Text plugin is not enabled default because of the security issues. You may find the details on Atlassian documentation.
Also, as an alternative, you may try HTML for Jira plugin, or you may find some free alternatives from Marketplace.
I found a way to accomplish this. You can embed it in a issue ie the description field and use a filter to display that field of that issue
I just install a new copy of Azure DevOps Server (TFS) to my own computer.
the only work items I can use right now are: "Epic", "Issue" & "Task".
Now my Question is:
How can I add the work items "User Story", "feature"& "Bug"?
Thanks any help will be appreciated.
Because when you created the team project you chose Basic process template, you need to choose Agile/Scrum/CMMI.
Try to create a new project with Agile/Scrum/CMMI process template.
See here more info.
Agree with Shayki Abramczyk.
How can I add the work items "User Story", "feature"& "Bug"?
We could create work item via Agile process, then we could add work items User Story, Feature and Bug.
If you still want to use Basic Process template and your TFS version is Azure DevOps Server 2019 or later versions. You could create collection via Inheritance process model, then open Collection Settings->Process->select Inheritance process->click the button New work item type to add new work item type.
If you are using On-premises XML process model, you could refer to this doc to add work item type.
I want to create custom JIRA board plugin.
Is this possible at all?
I went through https://developer.atlassian.com but I can't find anything useful.
Here is a list of addon types you can create for JIRA standalone:
https://developer.atlassian.com/display/JIRADEV/JIRA+Plugin+Module+Types
I believe that you want to create a gadget for a JIRA board:
https://developer.atlassian.com/display/GADGETS/Packaging+your+Gadget+as+an+Atlassian+Plugin
I am using JIRA 3.13, I want to show list of tickets (based on a certain filter) in the dashboard with a column of my choice. For example, I want to show the ticket name, description, and resolution date (or a column of my choice). Is this possible? I use "Show saved Filter", the one that came with JIRA, but it does not allow me to do any customization.
Does anyone has a solution of how to have this showed in JIRA dashboard? Do I need to install a certain for this? Is it free? How do I install it?
Thanks all for the help!
There is a paid portlet that we can use to do this. The portlet is called "Jira Show Saved Filter With Columns" made by jPlugs.com. We have to pay ~$200.
Installation is pretty simple but requires to bring down JIRA (restart). Anyway, the steps is:
1. Put the jar file in WEB-INF/lib
2. Restart JIRA
The company offer 30 days trial. In order to get the trial key, you need to create an account in their website and then generate the trial key also from their website. Make sure you check the version of the portlet that you install. For me, I use version 2.03 which looks like the latest that was released for my JIRA.
Hopefully, this info will help others.