Getting Child Column Values

This API returns an array of column values of child cells based on the parent row ID and the specified column name.

emxEditableTable.getChildrenColumnValues

This API requires these input arguments:


  • rowId. The row ID of the parent row.
  • colName. The column name of the needed cell.
  • level. The number of levels beneath that parent for which values should be returned.

Example:

Var rowId = [0,1];
Var colName = Units
Var level = 3;
emxEditableTable.getChildrenColumnValues(rowId,colName,level)