Hi,
In the User Management I have added a Custom Field named Test and as type Text.
In my Maps module I would like to output the value of that field.
Assume I have added the values:
Name: John
Test: Testvalue
The code:
@foreach (LoopItem i in GetLoop("Locations")){
<text>Name:</text> @i.GetValue("Name")
<text>Test:</text> @i.GetValue("Test")
}
This outputs "Name: John Test:"
Nothing is outputted from test.
I have tried with @i.GetString("AccessUser_Test"), @i.GetString("_Test") etc., but nothing?
Isn't it possible to output values from Custom Fields in the Maps Module?