Versions Compared

Key

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

...

...

...

...

...

...


Info
titleRequired apps
  • Power Custom Fields PRO™ or
  • Power Custom Fields Premium

You can use Power Custom Fields Premium for huge data sets. Still, showing all the options, without being able to select them by name can be a torture. So, you can limit the value count and filter them by name selecting the ones which contain those characters.

...

Code Block
string [] issues = selectIssues("created < now()");
string [] res;
for (string iss in issues) {
    if (contains(iss.summary, argv["query"])) {
        res = addElementIfNotExist(res, iss);
    }
}
return res;

See also

Data Source Configuration