Skip to end of banner
Go to start of banner

Example 2 - Issue Links

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 23 Current »

Power Custom Fields PRO™ is becoming Power Custom Fields Premium™


Power Custom Fields PRO™ is being upgraded to Power Custom Fields Premium™. We are removing Power Custom Fields PRO™ from the market to focus resources on the combined app, Power Custom Fields Premium™ which has all the features of PRO™ and more. Existing Power Custom Fields PRO™ users can get 65% off their new Power Custom Fields Premium™ license by following the steps here.

Let's say you want to link the current issue to another issue that you select. Using Power Custom Fields PRO you can do this easily. 

Considering we have a PCF - Single Select configured with one SIL Data Source, one Selection script, minimum characters for autocomplete set to 5 and the maximum results number set to 50. We want to select an issue using its key or summary. You can see the custom field in the picture below: 

For this example we used the following SIL data source. 

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

The select script used is:

KPOption[] selectedOption = customfield_12209;
linkIssue(key, selectedOption[0].value, "Relates");

It creates a link of the "Relates" type between the current and the selected issue.


Note that you'll have to use the name of the link issue, as you find it on the Issue linking page (in our case, "Relates" and not "relates to").

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

See also

  • No labels