Info | ||
---|---|---|
| ||
This routine is available starting with
|
Syntax
getColumn(tableField, columnIndex)
Description
Excerpt |
---|
Retrieves data in the column at the specified index from a data table custom field. |
Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
tableField | array | Yes | Value of the data table custom field |
columnIndex | number | Yes | Index of the column to be retrieved |
Return Type
string[]
Example
Code Block |
---|
string[] fullNames = getColumn(customfield_10001, 2); |
For the Developers custom field with the customfield_10001 id, the result returned by the above routine call will be: admin|developer1|developer2|developer3|developer4|developer5.