Skip to end of banner
Go to start of banner

lfAllowSelectOptions

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 5 Next »

Availability

This routine is available since Power Scripts for JIRA 3.0.2 (formerly known as JJUPIN)

Syntax

lfAllowSelectOptions(field, options[, triggerChange])

Description

Restricts the list of given options of the field to the list of options given as parameter.

Parameters

ParameterTypeRequiredDescription
fieldStringYesThe field to restrict options for.
options

String

YesThe list of remaining options.
triggerChangeBooleanNoIf set to true, triggers the change event on the field when routine is used.

Example

The following code example restricts anything but Major and Minor from the options of the priority standard field.

lfAllowSelectOptions("priority", {"Major", "Minor"}); //where field = "priority" and options = "Major" and "Minor"

If you want to trigger the change event on the field when using lfAllowSelectOptions, you can use the optional triggerChange parameter set to true:

lfAllowSelectOptions("customfield_10000", {"option1", "option2"}, true); 
//where field = "customfield_10000" of type select list, options = "option1" and "option2" and triggerChange = true

See Also:

  • No labels