gadget_createCheckboxGroup
Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8 for Server/Data Center?Ā Click hereĀ !
Syntax
gadget_createCheckboxGroup(label, options, defaultValue[, isRequired, fieldDescription])
Description
Creates a checkbox group.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
label | string | Yes | Label of the field. |
options | string [] | Yes | List of selectable options. |
defaultValue | string | Yes | Default value (one of the options provided) or an empty string. |
isRequired | boolean | No | Specifies if the field is should be marked as required with a dark red asterisk. Note that marking the field as required does not add any validation. |
fieldDescription | string | No | Description of the field to be displayed immediately under the input box. |
Return type
string []
The returned value has no meaning
Example
gadget_createCheckboxGroup("Simple checkbox group", {"A", "B", "C"}, "Not required"); gadget_createCheckboxGroup("Checkbox group 2", {"12", "13", "14", "15","16"}, {"13"}, true, "Required Checkbox Group");
Ā
See also