ItemPublisher:Item.[ItemFieldSystemName].Options
Summary
The ItemPublisher:Item.[ItemFieldSystemName].Options
loop lets you display various information about the options for the fields of type List.
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.
Check if the loop exists
Example of usage
The following general example illustrates how to use a loop construct.
Check if the loop exists
Available tags
ItemPublisher:Item.[ItemFieldSystemName].Options.Image
Returns the path and a file name of an icon used for the option.
@GetObject("ItemPublisher:Item.[ItemFieldSystemName].Options.Image")
ItemPublisher:Item.[ItemFieldSystemName].Options.IsSelected
Returns the value of the option being selected or not (True or False)
@GetObject("ItemPublisher:Item.[ItemFieldSystemName].Options.IsSelected")
ItemPublisher:Item.[ItemFieldSystemName].Options.Label
Returns the label of the option.
@GetObject("ItemPublisher:Item.[ItemFieldSystemName].Options.Label")
ItemPublisher:Item.[ItemFieldSystemName].Options.Value
Returns the value of the option.
@GetObject("ItemPublisher:Item.[ItemFieldSystemName].Options.Value")