Versions Compared

Key

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

...

Save the changes and the selected value should appear on the issue screen: 

Example for

...

SIL Data Source

 Get Issues 

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;

This example is used to generate the pictures above. It gets all the created issues with the summary matching the search.

 

Example for SQL Data Source

JNDI : jiraDS

Sil Autocomplete Script

Code Block
select pname from issuetype;

This example returns the name of issue type.