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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Checklist check/uncheck all

Because I have not found another method, I commonly use Trello checklists as collapsable ordered lists. In order to collapse a checklist, all items must be checked as completed, which changes all item text to strikethrough formatting. This is all wonderful for checklists, but makes ordered lists harder to read, meaning every item in the checklist is typically deselected for viewing and then reselected afterward.

Is it possible to add a checklist function to the checklist icon which would select or deselect all items in the checklist (depending on the selection state)? This would be immensely useful.

If this is not possible, would it be possible to create a secondary option to allow users to collapse entire checklists regardless of completion status?

9 answers

Please add this basic checklist feature : check all / uncheck all

Yes -that would be so helpful

Like Merlothoof likes this

I found this thread looking for the same answer.
I have created an automation -> button that unchecks all items in my checklist. This can be set to uncheck all checklists in a card or just a specified checklist. This works for me.

Nick Faustin
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Jul 26, 2023 • edited

Thanks heaps Paul. This works really well and is simple to do:)

Our team has also been looking for the same thing. Each morning we have a checklist to compelte, but it is a pain to uncheck everything every day only to check it all again. 

One suggestion till this basic feature comes:

Create a template card with your checklist.
Every morning create a card from it and you can check each item and archieve once done. Repeat everyday. :)

2 votes
Torben_trello
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jun 20, 2017

Right now, that it is not possible to collapse single checklists within a card. But I'll make sure to share the suggestion with our team for consideration.

Hi Torben, has this been added by any chance? We are also in search of such a feature.

Like Shawn Becker likes this

Same Here. Chech/uncheck all feature would be great! Thank you

Like # people like this

I'm also looking for this feature in confluence for test cases

Like Shawn Becker likes this

Please provide a check/uncheck option for confluence task lists

I would appreciate this feature as well. 

Me too. We need Checklists at Confluence which uncheck itself after reloading. So every user can check repeating processes, supported by a checklist.

I was having the same problem. This Chrome extension solved my problem https://chrome.google.com/webstore/detail/confluence-cloud-uncheck/mndfdglbjiklkaadbpbndpegplbacohb/related

It's not the best solution, but...

Thank you!! it worked for me!! 

Like Iasmini Gomes likes this
Kishan Sharma
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Aug 06, 2021

Is the chrome extension still available ? I am unable to find it.

It's been a while since I stop using that extension;  no problem, I just stopped using it.  I found "box unchecker" in the chrome extension store but I have not used it. 

Like Kishan Sharma likes this

Our staff has been looking for a way to utilize the checklists for more routine tasks.  Every Monday-Friday there's a certain list that has to be accomplished for each day and with interuptions and calls, it can be hard to refocus every 10 minutes to where you left off.  Each day has it's set list.  Each week our staff has to uncheck each item on a daily card "start over".  We tried the repeater power up and while it does create a new card that has items unchecked, it doesn't delete the old cards. So the clean up time by deleting old cards takes just as much time.  I think a select all toggle to select the check list items would save a bit more time.  We are new to trello but love it so far.  I even use it at home for taking care of an elderly parent to track medical care.  If there is an easier way to help with weekly tasks, we'd love to hear about it.  Thank you!

One suggestion till this basic feature comes:

Create a template card with your checklist.
Every morning create a card from it and you can check each item and archieve once done. Repeat everyday.

0 votes
Erica Allen
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Nov 26, 2023

You can also have a card reset all checklists when moved into a particular column.  So I have cards sent back to the to do column every day at midnight and automatically resets the checklists.  

0 votes
Sami Korhonen
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Aug 09, 2023

After six years, yes, please create checklist check/uncheck all button. Especially annoying for mobile users which cannot use browser extensions and scripting.

My solution to this problem is 2 steps: (1) set all checkboxes in the task list to "checked", (2) remove all the checkboxes marked "checked".  Please see https://www.screencast.com/t/7MTxrrRuuV7

 As you can see from the screenshot, I have added an html macro to my page, and inside the macro is the code, which I will share below so you don't have to type:

<a id="addAllcbx" href="#">Add checkboxes</a>
<script type="text/javascript">
AJS.toInit(function ()
{
AJS.$('#addAllcbx').click(function()
{
$( "ul.inline-task-list" ).find( "li" ).addClass("checked");

});
});
</script>

Hi Khuong Vu,

 

I've used your macro but the issue with that is if I refresh the page, the boxes will still be checked. 

Within the .click() function you should not use the .addClass() method, but instead .click() on the correct "checkbox" element. 

When you .click() it, it will complete the necessary server requests to actually check them off without just making them look checked off.

Hello @Ryder Wishart were you able to use this macro?
I changed this to use it with the click() like you said:

<a id="addAllcbx" href="#">Reset checkboxes</a> 
<script type="text/javascript"> AJS.toInit(function () {
AJS.$('#addAllcbx').click(function() {
$( "ul.inline-task-list" ).find( "li.checked" ).click();
});
});
</script>

 

But nothing happens on the page. And the developer tools are not helpful, no error message is shown.

Erica Allen
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Nov 26, 2023

You can create a custom button for checking all and/or unchecking all.  Go to Automations>Custom Buttons>Card Buttons

Click Create Button: choose your icon, name your button, and click enabled by default if you want it to show up on all your cards

Click Add Action

Select Checklists

Scroll down to the option 3rd from the bottom (at the time of this post) which says:

Check all the items in checklist checklist name on card

You can choose check or uncheck, you can select a specific checklist or you can apply the action to all the checklists on the card.

Like Alvaro Dias likes this
Alvaro Dias
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
Nov 29, 2023

Thanks a million Erica, I tried here and worked perfectly! 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events