OtherHiddenFields

From Plex-XML

Jump to: navigation, search

The otherHiddenFields template should be used to append special hidden fields to a HTML form.

Properties

Example

Two fields Foo3 and Foo4 will be appended as hidden fields to the HTML form.

If your FindBrowse uses Secured Fields the appendHashFields template is usually embedded in the otherHiddenFields template.

<xsl:template name="otherHiddenFields">

  <field name="Foo3" type="hidden"><xsl:value-of select="$FieldValue"/></field>
  <field name="Foo4" type="hidden">fixed hidden value</field>

  <xsl:call-template name="appendHashFields">
    <xsl:with-param name="param">
      <param value="{$Foo1}">Foo1</param>
      <param value="{$Foo2}">Foo2</param>
    </xsl:with-param>
  </xsl:call-template>

</xsl:template>
Personal tools