Versions Compared

Key

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

...

Table of Contents
excludeSee also

Configuring PCF - Single Autocomplete custom field


Go to the Administration page, choose Custom Fields link and add an PCF - Single Autocomplete.

...

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

Using PCF - Single Autocomplete custom field

Examples

Using Single Autocomplete custom field with SIL Data Source

Getting Issues

Example for SIL Data Source

 Get Issues This example gets all the created issues with the summary matching the search.

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;

...


 

...

Using Single Autocomplete custom field with SQL Data Source

Note

First of all, in order to use SQL Data Source, you have to set the JNDI as described here.

SQL Autocomplete Script

Code Block
select  p.project_key ||'-'||i.issuenum as "KEY"
from jiraissue i
inner join project_key p on p.project_id = i.project

...