$customHeader
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 Current »

Description

Restricts a field's selectable values to the list of options given as a parameter of the routine.

Parameters

Return Type

None

Example

lfAllowSelectOptions("priority", {"Medium", "High"}); 
//where field = "priority" and options = "Medium" and "High"

If you want to trigger the change event on the field when using the lfAllowSelectOptions routine, 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