PCF-PRO - Multiple Autocomplete

Power Custom Fields PRO™ is becoming Power Custom Fields™


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


Contents

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

This custom field can be used for the following types of options: 

  • 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.

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

If you go to an issue and edit this field, you will see an image like the following example: 

Save the changes and the values will appear on the issue screen: 

If the option type you selected is "Default", the picture above will look like the following example: 

Examples

Using Multiple Autocomplete custom field with SIL Data Source

Getting Users

This example gets all users existing in 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.

function getUsers(string [] groups){
  string [] users;
  for(string group in groups){
    string [] currentGrp;
    currentGrp = addElement(currentGrp, group);
    for(string user in usersInGroups(currentGrp)){
      users = addElementIfNotExist(users, usernameToUserKey(user));
    }
  }
  return users;
}
 
 
string [] groups = {"jira-users"};
string [] users = getUsers(groups);
string [] res;
for (string user in users) {
    if (contains(user, argv["query"])) {	
    	res = addElementIfNotExist(res, user); 
    }
}
return res; 


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 user names of all users.

select user_name from cwd_user;

See also