Hello all,
Just wondering if it is possible to expand and collapse all gadgets on a dashboard?
This function can come in handy when I review my dashboard with the team one gadget at a time. Once everything is set up, I don’t have to expand each gadget individually—I can expand all of them in one go.
There used to be a suggestion which was closed due to low engagement: https://jira.atlassian.com/browse/JRACLOUD-24339
Currently, there’s no bulk expand/collapse, but you can simplify the view by switching to a single-column layout, splitting gadgets across multiple dashboards, or using apps like Rich Filters for tabbed/grouped views as an alternative.
Hope this helps!
Kind Regards
Utkarsh
No - there is no built-in feature in Jira to do this. Neither could I find a marketplace apps to add this feature.
If have a paid-plan you could make a product suggestion.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There's no out-of-the-box solution, but looking at the page I created a bookmark "Jira - Toggle Dashboard Gadgets" that invokes some JavaScript which toggles the gadgets. It's not really elegant, if Atlassian decides to change the markup the script will break and needs adjustment. But even if they change the markup with a future release, it's super simple to adjust the script to whatever HTML they decide to spit out.
EDIT: in the following two code snippets, replace ":" simply with a real colon ":" For very good reasons they do not allow me to trigger javascript functions when you open this page/thread :-)
My oneliner bookmark URL atm is as follows:
javascript:(function(){document.querySelectorAll('div[id^="gadget-title"]').forEach((div)=>{const btn=div.querySelector("button");if(!btn){return;}btn.click();});})();
Beautified version:
1: javascript: (function() {
2: document.querySelectorAll('div[id^="gadget-title"]').forEach((div) => {
3: const btn = div.querySelector("button");
4: if (!btn) {
5: return;
6: }
7: btn.click();
8: });
9: })();
Explanation:
Explanation referring to the screenshot below:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for the replies.
I will sort them manually.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.