Versions Compared

Key

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

...

Note

In order to do this, you can use argv["query"] only if you set the Filtering Strategy (from Autocomplete settings) to Datasource.

Video

The following example below shows us how to do thisshows the routine:

Widget Connector
urlhttps://www.youtube.com/watch?v=MJk5raHkEjo&feature=youtu.be
 

...

The script used in the video is represented below:

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