Hidden Fields

The HiddenFields template part will render hidden input fields that are mandatory to make the WEM runtime function correctly.

It is important that the template part is inside a <form> block, seen at the example below.

Syntax

<% HiddenFields %>

Example

<body>
    <!-- Body content -->
    <form class="page" method="post" action="" enctype="multipart/form-data">
        <!-- Body content -->
        <% HiddenFields %>
    </form>
    <!-- Body content -->
</body>

Last updated

Was this helpful?