hidden_field

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "hidden_field".
... in search.naml
389
390
391
392
393
394
395
396
397
398
399
<macro name="hidden_field" parameters="name,default_value" dot_parameter="value">
    <n.if.not.is_null.value>
        <then>
            <n.if.not.equal value1="[n.value/]" value2="[n.default_value/]">
                <then>
                    <input type='hidden' name="[n.name/]" value="[n.value/]"/>
                </then>
            </n.if.not.equal>
        </then>
    </n.if.not.is_null.value>
</macro>