Iterates through a repeater with optional filter and returns output for the item with specified index
To return a single value for an item from an unfiltered repeater use: <<Repeater[Index].Tag>>
Syntax
<<[ElementAt(Index):Repeater{Filter}:Output]>> Server
Index Required
Zero based index of item
Repeater Required
Tag name of repeater
Filter
Boolean expression to filter repeater items e.g. {'<<Type>>' == 'Primary'}
Output Required
Text and <<tags>> for repeater item e.g. <<FirstName>> <<LastName>>
Examples
Function | Result |
---|---|
<<[ElementAt(1):Contact{'<<Type>>' == 'Primary'}:<<FirstName>> <<LastName>>]>> | Mary Bloggs |