JavaScript

{dialog.object}_repeatingSectionLogicalToPhysicalRow Method

Syntax

{dialog.object}._repeatingSectionLogicalToPhysicalRow(sectionName,logicalRow);

Arguments

sectionNamestring

A specified repeating section.

logicalRownumber

The logical row number, same as physical row number if no rows have been deleted.

Description

Returns the physical row number for given logical row number in a specified Repeating Section.

Example

var row = {dialog.object}._repeatingSectionLogicalToPhysicalRow('CONTAINER_1',3);

If no rows in the Repeating Section have been deleted, the logical and physical row number for a given row are the same. The Ids of the element in a row of a Repeating Section are based on the row's physical row number. e.g. {dialog.componentname}.V.R1.QUANTITY_A5INSTANCE3 - the '3' is a reference to the physical row number.

See Also