...
Go to any issue page, expand the Checklist dropdown, and select "Any items" from the search menu.
or Go go to the Search View view and use one of the following statements:
Code Block |
---|
hasChecklistItems = "true" |
...
Code Block |
---|
checklistItemsCount > 0 |
e.g.:
Search issues containing unchecked items
Go to any issue page, expand the Checklist dropdown, and select "Uncompleted Incomplete items" from the search menu.
or
Go or go to the Search View view and use one of the following statements:
Code Block |
---|
hasActiveChecklistItems = "true" |
...
Code Block |
---|
activeChecklistItems > 0 |
e.g.:
Search issues containing given number of unchecked items
...
Go to any issue page, expand the Checklist dropdown, and select "Item text" from the search menu.
or Go go to the Search View view and use the following statement
Code Block |
---|
checklistItems ~ "Firefox" |
...
e.g:
Info |
---|
The above search does not work if "View Checklist" permission has been activated. In that case, use advanced search to find issue issues with a given checklist text. |
...