gadget_getMultiUserPickerValue
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 !
Availability
This routine is available starting with SIL Engine™ 3.0.8.
Syntax
gadget_getMultiUserPickerValue(argv, label)
Description
Retrieves the value from a multi user picker.Parameters
Parameter name | Required | Description |
---|---|---|
argv | Yes | the argv variable |
label | Yes | the label of the multi user picker |
Return type
string[]
Example
Assume we have the following script that creates a multi user picker:
gadget_createMultiUserPicker("MultiUserPicker", {"admin", "demouser"}, true, "Required Multi User Picker");
in order to retrieve the values entered in the field above we need to use the gadget_getMultiUserPicker routine as follows:
string[] res = gadget_getMultiUserPickerValue(argv, "MultiUserPicker"); //res[0] = admin //res[1] = demouser
The routine has returned in this case an array of two strings, "admin" and "demouser".
See also