We have a new documentation site. Please go here to see the latest.
Search basic (including JQL)
Issue Checklist offers following built-in search functions (they are available directly from the page):
- 1 Search issues containing checklist items
- 2 Search issues containing unchecked items
- 3 Search issues containing given number of items
- 4 Search issues containing given number of unchecked items
- 5 Search issues containing items with given text
- 6 Search for issues containing completed (or deleted) checklist
- 7 Troubleshooting
There is also Advanced Search functionality available.
Search issues containing checklist items
Go to any issue page, expand the Checklist dropdown, and select "Any items" from the search menu:
or go to the Search view and use one of the following statements:
hasChecklistItems = "true"checklistItemsCount > 0e.g.:
Search issues containing unchecked items
Go to any issue page, expand the Checklist dropdown, and select "Incomplete items" from the search menu
or go to the Search view and use one of the following statements:
hasActiveChecklistItems = "true"activeChecklistItems > 0e.g.:
Search issues containing given number of items
Go to Search view and use the following statement:
checklistItemsCount = 3Search issues containing given number of unchecked items
Go to Search view and use the following statement:
activeChecklistItems = 3Search issues containing items with given text
Go to any issue page, expand the Checklist dropdown, and select "Item text" from the search menu
or go to the Search view and use the following statement
checklistItems ~ "Firefox"e.g:
The above search does not work if "View Checklist" permission has been activated. In that case, use advanced search to find issues with a given checklist text.
Search for issues containing completed (or deleted) checklist
Go to Search View and use the following statement:
hasActiveChecklistItems = "false"
Need more options? Check Advanced Search functionality.