ItemPublisher:Item.[ItemFieldSystemName].Options
Summary
The ItemPublisher:Item.[ItemFieldSystemName].Options
loop lets you display various information about field options.
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("ItemPublisher:Item.[ItemFieldSystemName].Options") {
<td> @item.GetValue("Relevant.Tag") </td>
}
</tr>
</table>
Check if the loop exists
@if (Loops.Contains("ItemPublisher:Item.[ItemFieldSystemName].Options")) {
...
}
Example of usage
The following general example illustrates how to use a loop construct.
<table>
<!--@LoopStart(ItemPublisher:Item.[ItemFieldSystemName].Options)-->
<tr>
<td><!--@Loop:Tag--></td>
</tr>
<!--LoopEnd(ItemPublisher:Item.[ItemFieldSystemName].Options)-->
</table>
Check if the loop exists
<!--@If LoopDefined(ItemPublisher:Item.[ItemFieldSystemName].Options)-->
...
<!--@EndIf(ItemPublisher:Item.[ItemFieldSystemName].Options)-->
Available tags
ItemPublisher:Item.[ItemFieldSystemName].Options.Image
Returns the path and a file name of an icon used for the option.
RAZOR
@GetObject("ItemPublisher:Item.[ItemFieldSystemName].Options.Image")
ItemPublisher:Item.[ItemFieldSystemName].Options.IsSelected
Returns the value of the option being selected or not (True or False)
RAZOR
@GetObject("ItemPublisher:Item.[ItemFieldSystemName].Options.IsSelected")
ItemPublisher:Item.[ItemFieldSystemName].Options.Label
Returns the label of the option.
RAZOR
@GetObject("ItemPublisher:Item.[ItemFieldSystemName].Options.Label")
ItemPublisher:Item.[ItemFieldSystemName].Options.Value
Returns the value of the option.
RAZOR
@GetObject("ItemPublisher:Item.[ItemFieldSystemName].Options.Value")