Rows
Summary
The Rows
loop lets you display various information about the rows.
Examples
Basic usage
Notice the use of @item.GetValue to get data from the loop variable.
If you just write @GetValue, the data will be taken from outside the loop.
Similarly, you have to use @item.GetLoop to use loops inside a loop.
<table>
<tr>
@foreach (LoopItem item in GetLoop("Rows") {
<td> @item.GetValue("Relevant.Tag") </td>
}
</tr>
</table>
Check if the loop exists
@if (Loops.Contains("Rows")) {
...
}
Example of usage
The following general example illustrates how to use a loop construct.
<table>
<!--@LoopStart(Rows)-->
<tr>
<td><!--@Loop:Tag--></td>
</tr>
<!--LoopEnd(Rows)-->
</table>
Check if the loop exists
<!--@If LoopDefined(Rows)-->
...
<!--@EndIf(Rows)-->
Available tags
Available loops
Row
The Row
loop lets you display various information about the row.
RAZOR
@foreach (LoopItem item in GetLoop("Row")){ <p>@item.GetValue("TagName")</p> }