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