Our new Appfire Documentation Space is now live!

Take a look here! If you have any questions please email support@appfire.com

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 17 Current »

Abstract

This code snippet sets a Checklist/Multi-select type field with a subset of the available options based on a regular expression

Logic

Access the available options of the Checklist/Multi-select type field and retain all the options that match the regular expression.

Snippet

def regExp = ~/^(?i).*<Text to match in the option>.*/
issue.getAvailableOptions("<Name of the field>").findAll{
  it.getValue().matches(regExp)
}

Placeholders

PlaceholderDescriptionExample
<Name of the field>Name of the field of type Checkboxes/Select list(multiple choices)Tasks list
<Text in the option>Text the options must contain to be selectedInstallation

Examples

The output of the code is Collection<Option> which you could use in a Groovy expression, for example to - Set a Checkboxes/Multi-select field with a subset of its available options. Eg: Select all the Installation tasks in the Checkboxes/Multi-select type field in

  • one of the Set Field Value post-functions
  • the Create issue post-function under Set fields of new issue section

    def regExp = ~/^(?i).*installation.*/
    issue.getAvailableOptions("Installations list").findAll{
      it.getValue().matches(regExp)
    }

References

Filter by label

There are no items with the selected labels at this time.

  • No labels