SelectableGroups
Summary
The SelectableGroups loop lets you display various information about an user group can be selected during the creation/editing .
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.SelectableGroup.ID
Returns the ID of the selectable user group.
@GetInteger("UserManagement:User.SelectableGroup.ID")
UserManagement:User.SelectableGroup.Input
Returns an input field for the selectable user group.
@GetString("UserManagement:User.SelectableGroup.Input")
UserManagement:User.SelectableGroup.InputName
Returns an ID/name for the selectable user group field that can be used in the code for an input field.
@GetString("UserManagement:User.SelectableGroup.InputName")
UserManagement:User.SelectableGroup.IsSelected
Returns True if the selected group checkbox is selected.
@GetString("UserManagement:User.SelectableGroup.IsSelected")
UserManagement:User.SelectableGroup.Name
Returns the name of the selected user group.
@GetString("UserManagement:User.SelectableGroup.Name")
UserManagement:User.SelectableGroup.ParentID
Returns the ID of the parent group of the selected group.
@GetInteger("UserManagement:User.SelectableGroup.ParentID")