Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info
titleAvailability

This routine is available since katl-commons 2.5/databasecf 2.1.

Syntax

...

getRow(tableField, rowIndex)

Description

...

Excerpt

Retrieves the data in the row at the specified index from a data table custom field.

Parameters

...

Parameter nameTypeRequiredDescription
tableFieldarrayYesThe data table custom field value.
rowIndexnumberYesThe index of the row to be retrieved.

Return Type

...

string[]

Example

...

Code Block
string[] adminDetails = getRow(customfield_10001, 0);

...