Versions Compared

Key

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

...

Assume you have setup a grid to track a checklist as detailed inĀ Issue type specific checklist. The grid contains following columns

  • Summary
  • Responsible
  • Status

Image RemovedImage Added

You need to know which issues still have 'open' checkitems.

...

which returns all issues having a checklist where one of the rows has status 'open'

Image RemovedImage Added

You can combine different criteria, like for example to select all the issues where the user 'Angelina Jolie' is responsible for a specific checkitem:

Panel

issue in grid("grid checklist", "status = 'Open' and responsible_name like 'Angelina%'")

Image RemovedImage Added

...