Confirmation
Available tags
Form.SaveStatus
Returns the value "Form saved" if the form was saved succesfully in frontend.
RAZOR
@GetString("Form.SaveStatus")
Available loops
FieldOptions
The FieldOptions loop lets you display information about related the field options for the fields of type Radio button or Dropdown.
RAZOR
@foreach (LoopItem item in GetLoop("FieldOptions")){ <p>@item.GetValue("TagName")</p> }
Form.Fields
The Form.Fields
loop lets you display various information about the forms fields.
RAZOR
@foreach (LoopItem item in GetLoop("Form.Fields")){ <p>@item.GetValue("TagName")</p> }