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

...

getTableElement(tableField, rowIndex, columnIndex)

Description

...

Excerpt

Retrieves the data in the cell at the specified location from a data table custom field.

Parameters

...

Parameter nameTypeRequiredDescription
tableFieldarrayYesThe data table custom field value.
rowIndexnumberYesThe table row index.
columnIndexnumberYesThe table column index.

Return Type

...

string

Example

...

Code Block
string keplercfDescription = getTableElement(customfield_10000, 2, 1);

...