UserManagement:User.Item.[FieldSystemName].Options
Summary
The UserManagement:User.Item.[FieldSystemName].Options
loop lets you display information about options for the item type field has [FieldSystemName] system name.
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
UserManagement:User.Item.[FieldSystemName].Option.Image
Returns the path and a file name of an icon used for the option.
@GetString("UserManagement:User.Item.[FieldSystemName].Option.Image")
UserManagement:User.Item.[FieldSystemName].Option.IsSelected
Returns the value of the option being selected or not (True or False).
@GetString("UserManagement:User.Item.[FieldSystemName].Option.IsSelected")
UserManagement:User.Item.[FieldSystemName].Option.Label
Returns the label of the option.
@GetString("UserManagement:User.Item.[FieldSystemName].Option.Label")
UserManagement:User.Item.[FieldSystemName].Option.Value
Returns the value of the option.
@GetString("UserManagement:User.Item.[FieldSystemName].Option.Value")