<es:transposeArray> Tag

The <es:transposeArray> tag is used to transpose a standard [row][column] array to a [column][row] array.

Syntax

<tagName attribute="value" />

Attributes

id

Required (String) - The variable that holds the [c][r] array.

type

Required (String) - The type of variable in the [r][c] array, such as String.

array

Required (Object array) - The variable that holds the [r][c] array.

Example

<es:transposeArray id="byColumnRow" array="<%=byRowColumn%>" type="String">
</es:transposeArray>