Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
titleDisplay "My items" on the Jira Dashboard

It is possible to save the JQL as a filter in Jira and then display the results of an issue filter on the Jira Dashboard using "Filter Results Gadget". 


Search for all issues with an item "abc" that is checked (item is completed)

...

This example assumes that Statuses are not enabled in Global Settings. 

Code Block
"Checklist Text" ~ "\\[x\\] abc"

...

Warning

Due to Jira bug, this query and the ones below (searching for an exact term) do not work as expected. Please vote for a fix at JRACLOUD-69263


Search for all issues with an item "abc" that is unchecked (item is not completed)

...

. This example assumes that Statuses are not enabled in Global Settings. 

Code Block
"Checklist Text" ~ "\\[\\] abc"


Search for all issues with an item "abc" that is checked (completed) and item "def" that is unchecked (not completed)

...

This example assumes that Statuses are not enabled in Global Settings. 

Code Block
"Checklist Text" ~ "\\[x\\] abc" and "Checklist Text" ~ "\\[\\] def"

...