Warning | ||
---|---|---|
| ||
|
Issue Links
Let's consider the next example: we say you want to link the current issue to an another issue selectedthat you select. Using Power Custom Fields PRO PRO you can do this very simpleeasily.
Considering we have a PCF - Single select 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. The You can see the custom field looks like thisin the picture below:
The SIL data source used to populate the custom field above:
For this example we used the following SIL data source.
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;
|
...
The select script used is:
Code Block |
---|
KPOption[] selectedOption = customfield_12209; linkIssue(key, selectedOption[0].value, "Relates"); |
It creates a link of type the "Relates" type between the current issue and the selected issue.
Note |
---|
Please notice Note that you'll have to use the name of the link issue, as you find it in 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
...