Versions Compared

Key

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

...

Multiple Autocomplete custom field enables you to select multiple options in the an autocomplete select list field based on dynamic data source. 

...

  • String (default)
  • Component Picker
  • Group Picker
  • Issue Picker
  • Project Picker
  • User Picker
  • Version Picker

...

Adding PCF - Multiple Autocomplete custom field

  1. Log into your Jira as Admin.
  2. Go to Administration > Issues > Custom Fields page.
  3. Click Add custom field and select PCF - Multiple Autocomplete.Configure

After you add this

...

field, you need to configure it as described on the Configuring Power Custom Fields

...

PRO™ page.

...

Using PCF - Multiple Autocomplete custom field

...

Using Multiple Autocomplete custom field with SIL Data Source

Getting Users

This example gets all users existing in some certain groups (in this case, "jira-users") and adds the usernames that match the search as options to the custom fields using this data source.

...


Using Multiple Autocomplete custom field with SQL Data Source

...

To use SQL Data Source,

...

set the JNDI

...

 first. You can see details on the Data Source Configuration page.

SQL Autocomplete Script

This example returns the user names of all users.

Code Block
select user_name from cwd_user;

See also